Skip to content

[#235] test_pg_ctl_wait_option detects a port conflict #257

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
Comment is corrected
  • Loading branch information
dmitry-lipetsk committed May 7, 2025
commit 0d38b16fc28cfa5fb38d4d2f1a6ddc543800c3ee
2 changes: 1 addition & 1 deletion testgres/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -2245,7 +2245,7 @@ def read(self) -> typing.List[LogDataBlock]:
assert type(file_content_b) == bytes # noqa: E721

#
# A POTENTIAL PROBLEM: file_content_b may contain an incompeted UTF-8 symbol.
# A POTENTIAL PROBLEM: file_content_b may contain an incompleted UTF-8 symbol.
#
file_content_s = file_content_b.decode()
assert type(file_content_s) == str # noqa: E721
Expand Down