From 85630080aa4c994c8dc6129ce5dcdad8062eec90 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalenko Date: Fri, 19 Dec 2025 23:28:31 +0300 Subject: [PATCH 1/2] cleanup: node._try_shutdown does not pass expect_error to os_ops.kill (#297) This argument (expect_error) it is a bad idea and should be removed from os_ops.kill --- src/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.py b/src/node.py index be9408be..3c5b2b7f 100644 --- a/src/node.py +++ b/src/node.py @@ -669,7 +669,7 @@ def _try_shutdown(self, max_attempts, with_force=False): try: eprint('Force stopping node {0} with PID {1}'.format(self.name, node_pid)) - self.os_ops.kill(node_pid, signal.SIGKILL, expect_error=False) + self.os_ops.kill(node_pid, signal.SIGKILL) except Exception: # The node has already stopped pass From eb32f6de6bfbf72ffc60b9b3ecf9e137fd9c243e Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Sat, 20 Dec 2025 02:12:12 +0300 Subject: [PATCH 2/2] version 1.12.1 --- docs/source/conf.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index e931931e..cf9d8753 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -33,7 +33,7 @@ # The short X.Y version version = u'' # The full version, including alpha/beta/rc tags -release = u'1.12.0' +release = u'1.12.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index f5f25e3a..d5246481 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ readme = f.read() setup( - version='1.12.0', + version='1.12.1', name='testgres', packages=['testgres', 'testgres.impl'], package_dir={"testgres": "src"},