Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8965125

Browse files
author
vshepard
committedMar 12, 2024
Remove logging in run
1 parent 8436008 commit 8965125

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed
 

‎testgres/plugins/pg_probackup2/pg_probackup2/app.py

Lines changed: 1 addition & 2 deletions
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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +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')
209207

210208
def test_env(self):
211209
return self._test_env.copy()

0 commit comments

Comments
 (0)
Please sign in to comment.