Skip to content

Commit 3e29bd4

Browse files
attempt os system exec;
1 parent 9ff2fb0 commit 3e29bd4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/executor.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,9 @@ def _run_command(self, command, defaults_url=None, apps_url=None):
285285
env["SPLUNK_DEFAULTS_URL"] = defaults_url
286286
if apps_url:
287287
env["SPLUNK_APPS_URL"] = apps_url
288-
self.logger.info("execute command")
288+
self.logger.info(f"os.system attempt - {command}")
289+
os.system(command)
290+
self.logger.info("execute command vis subprocess;")
289291
proc = subprocess.Popen(sh, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env)
290292
self.logger.info("PROC created")
291293
lines = []

0 commit comments

Comments
 (0)