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

Fix complete/fail date tracking passing

parent 2f8e3497
1 merge request!59Fix complete/fail date tracking passing
Pipeline #8986 passed with stages
in 29 seconds
......@@ -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"
"""
......
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