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 75767d5 commit a2e04d9Copy full SHA for a2e04d9
mongodb_consistent_backup/Common/LocalCommand.py
@@ -51,6 +51,7 @@ def parse_output(self):
51
def run(self):
52
try:
53
cmd = " ".join(self.admin_command_line+ ["&&"] + self.config_command_line + ["&&"] + self.command_line)
54
+ print(cmd)
55
self._process = Popen(cmd, stdout=PIPE, stderr=PIPE,shell= True)
56
while self._process.poll() is None:
57
self.parse_output()
0 commit comments