Skip to content

Commit

Permalink
Fix unexpected error on task resume [ci fast]
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
  • Loading branch information
pditommaso committed Nov 12, 2022
1 parent 2141f96 commit 1c3f468
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,9 @@ class TaskRun implements Cloneable {
catch( IllegalStateException e ) {
log.debug "Cannot access `tag` property for task: $baseName ($index)"
}
catch( Exception e ) {
log.debug "Unable to evaluate `tag` property for task: $baseName ($index)", e
}

// fallback on the current task index, however do not set the 'name' attribute
// so it has a chance to recover the 'sampleId' at next invocation
Expand Down

0 comments on commit 1c3f468

Please sign in to comment.