Skip to content

Fix error handling and port management for Windows #172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
A comment is added
  • Loading branch information
dmitry-lipetsk committed Dec 25, 2024
commit 6465b4183f63d82edbbb24ab9a41fa36da551185
1 change: 1 addition & 0 deletions testgres/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,7 @@ def start(self, params=[], wait=True):
"start"] + params # yapf: disable

def LOCAL__start_node():
# 'error' will be None on Windows
_, _, error = execute_utility(_params, self.utils_log_file, verbose=True)
assert error is None or type(error) == str # noqa: E721
if error and 'does not exist' in error:
Expand Down