Skip to content

Commit b4b5146

Browse files
hot fix: PostgresNode::start does not pass parameters into start2
1 parent 1282a18 commit b4b5146

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# The short X.Y version
3434
version = u''
3535
# The full version, including alpha/beta/rc tags
36-
release = u'1.13.0'
36+
release = u'1.13.1'
3737

3838
# -- General configuration ---------------------------------------------------
3939

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exclude = [".git", "__pycache__", "env", "venv"]
1111

1212
[project]
1313
name = "testgres"
14-
version = "1.13.0"
14+
version = "1.13.1"
1515

1616
description = "Testing utility for PostgreSQL and its extensions"
1717
readme = "README.md"

src/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ def start(self, params=[], wait=True, exec_env=None) -> PostgresNode:
10161016
Returns:
10171017
This instance of :class:`.PostgresNode`.
10181018
"""
1019-
self.start2()
1019+
self.start2(params, wait, exec_env)
10201020

10211021
if not wait:
10221022
# Postmaster process is starting in background

0 commit comments

Comments
 (0)