Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pieriandx needs 'SUCCEEDED' status as positive terminal status not 'COMPLETE' #604

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def handler(event, context):
# If both the job status and report status are true, then the workflow status is complete
elif JOB_STATUS_BOOL[job_status] is True and REPORT_STATUS_BOOL[report_status] is True:
expression_attribute_values_dict[":workflow_status"] = {
"S": "COMPLETE"
"S": "SUCCEEDED"
}
update_expression_str = f"{update_expression_str}, workflow_status = :workflow_status"

Expand Down Expand Up @@ -294,7 +294,7 @@ def handler(event, context):
# # "BOOL": true
# # },
# # ":workflow_status": {
# # "S": "COMPLETE"
# # "S": "SUCCEEDED"
# # }
# # },
# # "update_expression_str": "SET job_status = :job_status, report_status = :report_status, job_status_bool = :job_status_bool, report_status_bool = :report_status_bool, workflow_status = :workflow_status"
Expand Down