You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No warnings should appear in the log file. It seems that the pipelines are unable to detect failing jobs, instead waiting for the timeout before retrying the task, which significantly increases the runtime. This behaviour has been observed in nf-core/cutandrun and nf-core/scflow.
Steps to reproduce the problem
I believe all pipelines/runs with pbspro as their executors should be affected.
Operating system: Red Hat Enterprise Linux (version 8.5)
Bash version: GNU bash, version 4.4.20(1)-release (x86_64-redhat-linux-gnu)
Additional context
The problematic code snippet appears to be qstat -B | grep -E -v '(^Server|^---)' | awk -v ORS=' ' '{print "@"$1}', which produces two outputs in my case- @pbs and @.
While qstat -f @pbs executes as expected, qstat -f @ results in an error, which is the root cause of the issue.
The text was updated successfully, but these errors were encountered:
Bug report
Expected behavior and actual behavior
No warnings should appear in the log file. It seems that the pipelines are unable to detect failing jobs, instead waiting for the timeout before retrying the task, which significantly increases the runtime. This behaviour has been observed in
nf-core/cutandrun
andnf-core/scflow
.Steps to reproduce the problem
I believe all pipelines/runs with
pbspro
as their executors should be affected.Program output
Environment
Additional context
The problematic code snippet appears to be
qstat -B | grep -E -v '(^Server|^---)' | awk -v ORS=' ' '{print "@"$1}'
, which produces two outputs in my case-@pbs
and@
.While
qstat -f @pbs
executes as expected,qstat -f @
results in an error, which is the root cause of the issue.The text was updated successfully, but these errors were encountered: