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

Merge branch 'develop' into 'master'

Fix complete/fail date tracking passing

See merge request !59
parents 5671d78b 71592755
Branches
Tags
2 merge requests!78Master,!59Fix complete/fail date tracking passing
Pipeline #8972 passed with stages
in 3 minutes and 8 seconds
...@@ -2158,7 +2158,7 @@ process finalizeExecutionRun { ...@@ -2158,7 +2158,7 @@ process finalizeExecutionRun {
curl -H 'Content-Type: application/json' -X PUT -d \ curl -H 'Content-Type: application/json' -X PUT -d \
'{ \ '{ \
"ID": "${workflow.sessionId}", \ "ID": "${workflow.sessionId}", \
"Complete": "\${dt}" \ "Complete": "'\${dt}'" \
}' \ }' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track" "https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
""" """
...@@ -2248,7 +2248,7 @@ process failPreExecutionRun { ...@@ -2248,7 +2248,7 @@ process failPreExecutionRun {
curl -H 'Content-Type: application/json' -X PUT -d \ curl -H 'Content-Type: application/json' -X PUT -d \
'{ \ '{ \
"ID": "${workflow.sessionId}", \ "ID": "${workflow.sessionId}", \
"Failure": "\${dt}" \ "Failure": "'\${dt}'" \
}' \ }' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track" "https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track"
""" """
...@@ -2339,7 +2339,7 @@ process failExecutionRun { ...@@ -2339,7 +2339,7 @@ process failExecutionRun {
curl -H 'Content-Type: application/json' -X PUT -d \ curl -H 'Content-Type: application/json' -X PUT -d \
'{ \ '{ \
"ID": "${workflow.sessionId}", \ "ID": "${workflow.sessionId}", \
"Failure": "\${dt}" \ "Failure": "'\${dt}'" \
}' \ }' \
"https://9ouc12dkwb.execute-api.us-east-2.amazonaws.com/prod/db/track" "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