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

fix: updating image status variable #45

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
4 changes: 2 additions & 2 deletions src/aws/osml/utils/integ_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def monitor_job_status(sqs_client: boto3.resource, image_id: str) -> None:
for message in messages:
message_attributes = json.loads(message.body).get("MessageAttributes", {})
message_image_id = message_attributes.get("image_id", {}).get("Value")
message_image_status = message_attributes.get("image_status", {}).get("Value")
message_image_status = message_attributes.get("status", {}).get("Value")
if message_image_status == "IN_PROGRESS" and message_image_id == image_id:
logging.info("\tIN_PROGRESS message found! Waiting for SUCCESS message...")
elif message_image_status == "SUCCESS" and message_image_id == image_id:
Expand All @@ -135,7 +135,7 @@ def monitor_job_status(sqs_client: boto3.resource, image_id: str) -> None:
logging.info("\t...")
except ClientError as err:
logging.warning(err)
pass
raise err
max_retries -= 1
time.sleep(retry_interval)

Expand Down