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

Fix date ouput for finalize execution run table

parent 8b71fe3c
Branches
Tags
2 merge requests!58Develop,!57Prep of 1.0.0 release
Pipeline #8960 failed with stages
in 2 hours, 14 minutes, and 4 seconds
......@@ -2155,7 +2155,7 @@ process finalizeExecutionRun {
rid=\$(python3 ${script_uploadExecutionRun_finalizeExecutionRun} -r ${repRID} -w \${workflow} -g \${genome} -i ${inputBagRID} -s Success -d 'Run Successful' -o ${source} -c \${cookie} -u ${executionRunRID})
echo LOG: execution run RID marked as successful - \${rid} >> ${repRID}.finalizeExecutionRun.log
dt=`date --utc +%FT%TZ`
dt=`date +%FT%T.%3N%:z`
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}" \
......@@ -2245,7 +2245,7 @@ process failPreExecutionRun {
echo LOG: execution run RID updated - \${executionRun_rid} >> ${repRID}.failPreExecutionRun.log
fi
dt=`date --utc +%FT%TZ`
dt=`date +%FT%T.%3N%:z`
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}" \
......@@ -2336,7 +2336,7 @@ process failExecutionRun {
echo LOG: execution run RID marked as error - \${rid} >> ${repRID}.failExecutionRun.log
fi
dt=`date --utc +%FT%TZ`
dt=`date +%FT%T.%3N%:z`
curl -H 'Content-Type: application/json' -X PUT -d \
'{ \
"ID": "${workflow.sessionId}" \
......
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