Skip to content

Commit

Permalink
Quotations
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanHilt committed Jul 12, 2024
1 parent d52550c commit 85b78a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kube/services/workflow-age-monitor/argo-workflow-age.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
WORKFLOW_NAME=$(echo $workflow_info | jq -r '.name')
STARTED_TIMESTAMP=$(echo $workflow_info | jq -r '.status.startedAt')
if [ "$STARTED_TIMESTAMP" != null ]; then
if [ "$STARTED_TIMESTAMP" != "null" ]; then
# Convert creation timestamp to Unix Epoch time
CREATION_EPOCH=$(date -d "$STARTED_TIMESTAMP" +%s)
Expand Down

0 comments on commit 85b78a2

Please sign in to comment.