Skip to content

Commit 5e19a9e

Browse files
Merge pull request #940 from linsword13/slurm-wm
Do not show job status output during analyze
2 parents 6bb1e08 + ceae3f3 commit 5e19a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

var/ramble/repos/builtin/workflow_managers/slurm/workflow_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def _prepare_analysis(self, workspace):
199199
query_script = expander.expand_var_name("batch_query")
200200
query_cmd = Executable(query_script)
201201
try:
202-
query_cmd()
202+
query_cmd(output=os.devnull)
203203
except ProcessError as e:
204204
# Only log a warning as this is not considered a critical step
205205
logger.warn(f"batch_query returns error {e}")

0 commit comments

Comments
 (0)