8000 NodeApp::make_simple is refactored (tempfile.gettempdir) by dmitry-lipetsk · Pull Request #157 · postgrespro/testgres · GitHub
[go: up one dir, main page]

Skip to content

NodeApp::make_simple is refactored (tempfile.gettempdir) #157

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
NodeApp::make_simple uses iteritems(pg_options)
  • Loading branch information
dmitry-lipetsk committed Dec 6, 2024
commit 1d44628c65ad9266f303ecbb21080ed790ff01d0
4 changes: 2 additions & 2 deletions testgres/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -1807,8 +1807,8 @@ def make_simple(
options['wal_keep_segments'] = '12'

# Apply given parameters
for x in pg_options:
options[x] = pg_options[x]
for option_name, option_value in iteritems(pg_options):
options[option_name] = option_value

# Define delayed propertyes
if not ("unix_socket_directories" in options.keys()):
Expand Down
0