Skip to content

Commit 1d44628

Browse files
NodeApp::make_simple uses iteritems(pg_options)
1 parent 9d6f614 commit 1d44628

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testgres/node.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1807,8 +1807,8 @@ def make_simple(
18071807
options['wal_keep_segments'] = '12'
18081808

18091809
# Apply given parameters
1810-
for x in pg_options:
1811-
options[x] = pg_options[x]
1810+
for option_name, option_value in iteritems(pg_options):
1811+
options[option_name] = option_value
18121812

18131813
# Define delayed propertyes
18141814
if not ("unix_socket_directories" in options.keys()):

0 commit comments

Comments
 (0)