Skip to content

Commit

Permalink
print and rethrow
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Jan 10, 2024
1 parent 18f5723 commit 5563424
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions plugins/nf-quilt/src/main/nextflow/quilt/QuiltProduct.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,9 @@ ${nextflow}
pkg.push(msg, meta)
}
catch (Exception e) {
log.error('publish failed:', e)
log.error("Exception: ${e}")
print("FAILED: $pkg\n")
return
// throw e
throw new RuntimeException(e)
}
print("SUCCESS: $pkg\n")
}
Expand Down

0 comments on commit 5563424

Please sign in to comment.