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
(Please follow this template replacing the text between parentheses with the requested information)
Expected behavior and actual behavior
When using the flux executor, if a flux job reaches its timeout, it is silently marked as completed.
Steps to reproduce the problem
nextflow run main.nf -process.executor=flux
main.nf:
process GOTTCHA2 {
time "1min"
// container quay.io/biocontainers/gottcha2
script:
"""
sleep 360
"""
}
workflow {
GOTTCHA2 ()
}
Program output
N E X T F L O W ~ version 24.11.0-edge
Launching `modules/local/gottcha2/main.nf` [ecstatic_cray] DSL2 - revision: 364e2f58fb
executor > flux (1)
[40/55d301] process > GOTTCHA2 [100%] 1 of 1 ✔
Completed at: 31-Jan-2025 15:39:38
Duration : 1m 41s
CPU hours : (a few seconds)
Succeeded : 1
Bug report
(Please follow this template replacing the text between parentheses with the requested information)
Expected behavior and actual behavior
When using the flux executor, if a flux job reaches its timeout, it is silently marked as completed.
Steps to reproduce the problem
main.nf
:Program output
Environment
b582cb5719620c0d232faca439beb7268129929c
openjdk 17.0.14-internal 2025-01-21
Linux
zsh 5.5.1 (x86_64-redhat-linux-gnu)
Additional context
I tried to update the status codes listed here (https://github.com/nextflow-io/nextflow/blob/master/modules/nextflow/src/main/groovy/nextflow/executor/FluxExecutor.groovy#L169 ), as they don't quite match the output, but that didn't seem to help. It looks like the exit code in the work directory is
0
. I'm not sure where that comes from or if that's incorrect.Thanks in advance!
The text was updated successfully, but these errors were encountered: