From 805e644249bb08940145247e09607f1966fc7461 Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Tue, 22 Sep 2026 12:04:25 +0300 Subject: [PATCH] fix: value of FindPostmasterResultCode::not_found is corrected It was declared as a tuple (1,) , not a number (1). --- src/impl/platforms/internal_platform_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/impl/platforms/internal_platform_utils.py b/src/impl/platforms/internal_platform_utils.py index 3ae684ed..e9b121b6 100644 --- a/src/impl/platforms/internal_platform_utils.py +++ b/src/impl/platforms/internal_platform_utils.py @@ -9,7 +9,7 @@ class InternalPlatformUtils: class FindPostmasterResultCode(enum.Enum): ok = 0 - not_found = 1, + not_found = 1 not_implemented = 2 many_processes = 3 has_problems = 4