Skip to content

Commit 50fc4c5

Browse files
[BUG FIX] PostgresNode::start is corrected
Incorrect code to build a warning message.
1 parent fe03c24 commit 50fc4c5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

testgres/node.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -841,8 +841,7 @@ def LOCAL__raise_cannot_start_node__std(from_exception):
841841

842842
log_files0 = log_files1
843843
logging.warning(
844-
"Detected a conflict with using the port {0}. "
845-
"Trying another port after a {1}-second sleep...".format(self.port, timeout)
844+
"Detected a conflict with using the port {0}. Trying another port after a {1}-second sleep...".format(self.port, timeout)
846845
)
847846
time.sleep(timeout)
848847
timeout = min(2 * timeout, 5)

0 commit comments

Comments
 (0)