Thanks to visit codestin.com Credit goes to github.com
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 6e14fbb commit d65ab69Copy full SHA for d65ab69
testgres/node.py
@@ -526,8 +526,8 @@ def get_auth_method(t):
526
wal_level=wal_level) # yapf: disable
527
else:
528
self.append_conf(hot_standby=True,
529
- wal_keep_size=WAL_KEEP_SIZE,
530
- wal_level=wal_level) # yapf: disable
+ wal_keep_size=WAL_KEEP_SIZE,
+ wal_level=wal_level) # yapf: disable
531
532
# logical replication
533
if allow_logical:
testgres/utils.py
@@ -79,7 +79,7 @@ def execute_utility(args, logfile=None):
79
80
if out:
81
# comment-out lines
82
- lines = ('# ' + l for l in out.splitlines(True))
+ lines = ('# ' + line for line in out.splitlines(True))
83
file_out.write(u'\n')
84
file_out.writelines(lines)
85
0 commit comments