Skip to content
Snippets Groups Projects

Fix complete/fail date tracking passing

Merged Gervaise Henry requested to merge develop into master
Compare and
1 file
+ 3
3
Preferences
File browser
Compare changes
+ 3
3
@@ -2159,7 +2159,7 @@ process finalizeExecutionRun {
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}", \
"Complete": "\${dt}" \
"Complete": "'\${dt}'" \
}' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
"""
@@ -2249,7 +2249,7 @@ process failPreExecutionRun {
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}", \
"Failure": "\${dt}" \
"Failure": "'\${dt}'" \
}' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
"""
@@ -2340,7 +2340,7 @@ process failExecutionRun {
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}", \
"Failure": "\${dt}" \
"Failure": "'\${dt}'" \
}' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
"""