Skip to content

Commit

Permalink
Merge pull request #492 from yuuukuma/patch-2
Browse files Browse the repository at this point in the history
Update common_adapter.py
  • Loading branch information
computron authored Jun 28, 2024
2 parents 805a239 + 8d41058 commit 9630061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fireworks/user_objects/queue_adapters/common_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def get_njobs_in_queue(self, username=None):

# run qstat
qstat = Command(self._get_status_cmd(username))
p = qstat.run(timeout=self.timeout)
p = qstat.run(timeout=self.timeout, shell=True)

# parse the result
if p[0] == 0:
Expand Down

0 comments on commit 9630061

Please sign in to comment.