Skip to content

Commit b2b748e

Browse files
authored
Enable overwrite for timeline, report, trace, and dag (#325)
potential fix for gcp error ``` { "error": { "code": 412, "message": "At least one of the pre-conditions you specified did not hold.", "errors": [ { "message": "At least one of the pre-conditions you specified did not hold.", "domain": "global", "reason": "conditionNotMet", "locationType": "header", "location": "If-Match" } ] } } ```
1 parent 4965a67 commit b2b748e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

nextflow.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,18 +276,22 @@ nextflow.enable.configProcessNamesValidation = false
276276

277277
timeline {
278278
enabled = true
279+
overwrite = true
279280
file = "${params.outdir}/pipeline_info/execution_timeline_${params.trace_report_suffix}.html"
280281
}
281282
report {
282283
enabled = true
284+
overwrite = true
283285
file = "${params.outdir}/pipeline_info/execution_report_${params.trace_report_suffix}.html"
284286
}
285287
trace {
286288
enabled = true
289+
overwrite = true
287290
file = "${params.outdir}/pipeline_info/execution_trace_${params.trace_report_suffix}.txt"
288291
}
289292
dag {
290293
enabled = true
294+
overwrite = true
291295
file = "${params.outdir}/pipeline_info/pipeline_dag_${params.trace_report_suffix}.html"
292296
}
293297

0 commit comments

Comments
 (0)