Skip to content

Commit fe7c403

Browse files
author
vshepard
committed
Remove logging in run
1 parent 8436008 commit fe7c403

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

testgres/plugins/pg_probackup2/pg_probackup2/app.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,9 @@ def run(self, command, gdb=False, old_binary=False, return_id=True, env=None,
9999

100100
self.test_class.cmd = binary_path + ' ' + strcommand
101101
if self.verbose:
102-
print(self.test_class.cmd)
102+
logging.info(self.test_class.cmd)
103103

104104
cmdline = [binary_path, *command]
105-
logging.info(' '.join(cmdline))
106105
if gdb is True:
107106
# general test flow for using GDBObj
108107
return GDBobj(cmdline, self.test_class)

testgres/plugins/pg_probackup2/pg_probackup2/init_helpers.py

-3
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,6 @@ def __init__(self):
204204
os.environ["PGAPPNAME"] = "pg_probackup"
205205
self.delete_logs = delete_logs
206206

207-
# s3 params
208-
self.s3_type = test_env.get('PG_PROBACKUP_S3_TEST')
209-
210207
def test_env(self):
211208
return self._test_env.copy()
212209

0 commit comments

Comments
 (0)