We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d6f614 commit 1d44628Copy full SHA for 1d44628
testgres/node.py
@@ -1807,8 +1807,8 @@ def make_simple(
1807
options['wal_keep_segments'] = '12'
1808
1809
# Apply given parameters
1810
- for x in pg_options:
1811
- options[x] = pg_options[x]
+ for option_name, option_value in iteritems(pg_options):
+ options[option_name] = option_value
1812
1813
# Define delayed propertyes
1814
if not ("unix_socket_directories" in options.keys()):
0 commit comments