Skip to content
Snippets Groups Projects
Commit 413e1ce6 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Output execution run rid to tracking for fail and failPre Execution

parent 4d111e92
Branches
Tags
2 merge requests!61Develop,!60Resolve "failPreExecution not running on fastq error"
......@@ -2249,6 +2249,7 @@ process failPreExecutionRun_fastq {
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}", \
"ExecutionRunRID": "'\${rid}'", \
"Failure": "'\${dt}'" \
}' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
......@@ -2330,6 +2331,7 @@ process failPreExecutionRun_species {
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}", \
"ExecutionRunRID": "'\${rid}'", \
"Failure": "'\${dt}'" \
}' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
......@@ -2421,6 +2423,7 @@ process failExecutionRun {
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}", \
"ExecutionRunRID": "'\${rid}'", \
"Failure": "'\${dt}'" \
}' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment