Skip to content

Commit

Permalink
Fix missing quote
Browse files Browse the repository at this point in the history
  • Loading branch information
jordap committed Aug 29, 2024
1 parent ffcc5e4 commit 200e168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omnistat/omni_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def startExporters(self):
logging.info("Launching exporters in parallel using pdsh")

client = ParallelSSHClient(self.slurmHosts, allow_agent=False, timeout=120)
output = client.run_command(f"sh -c 'cd {self.topDir} && PYTHONPATH={':'.join(sys.path)} {cmd}")
output = client.run_command(f"sh -c 'cd {self.topDir} && PYTHONPATH={':'.join(sys.path)} {cmd}'")

# verify exporter available on all nodes...
psecs = 6
Expand Down

0 comments on commit 200e168

Please sign in to comment.