Skip to content

Commit

Permalink
making progress log more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Jul 7, 2024
1 parent c9e283a commit dd2ad5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def _serverless_deploy(self, model_package_arn, mem_size=2048, max_concurrency=5
while describe_endpoint_response["EndpointStatus"] == "Creating":
time.sleep(30)
describe_endpoint_response = self.sm_client.describe_endpoint(EndpointName=endpoint_name)
self.log.info(describe_endpoint_response["EndpointStatus"])
self.log.info(f"Endpoint Status: {describe_endpoint_response['EndpointStatus']}")
status = describe_endpoint_response["EndpointStatus"]
if status != "InService":
msg = f"Endpoint {endpoint_name} failed to be created. Status: {status}"
Expand Down

0 comments on commit dd2ad5c

Please sign in to comment.