Skip to content

Commit 19f66ab

Browse files
authored
Remove logging in run (#116)
1 parent 8436008 commit 19f66ab

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

Diff for: testgres/plugins/pg_probackup2/pg_probackup2/app.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import contextlib
22
import importlib
33
import json
4-
import logging
54
import os
65
import re
76
import subprocess
@@ -102,7 +101,6 @@ def run(self, command, gdb=False, old_binary=False, return_id=True, env=None,
102101
print(self.test_class.cmd)
103102

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

Diff for: 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)