Skip to content

Commit 217e8d1

Browse files
authored
fix: Fix typo in logging message within ir mixin (#3791)
Co-authored-by: Gary Wang <[email protected]>
1 parent e4c9bfc commit 217e8d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sagemaker/inference_recommender/inference_recommender_mixin.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ def right_size(
145145
)
146146

147147
if endpoint_configurations or traffic_pattern or stopping_conditions or resource_limit:
148-
LOGGER.info("Advance Job parameters were specified. Running Advanced job...")
148+
LOGGER.info("Advanced Job parameters were specified. Running Advanced job...")
149149
job_type = "Advanced"
150150
else:
151-
LOGGER.info("Advance Job parameters were not specified. Running Default job...")
151+
LOGGER.info("Advanced Job parameters were not specified. Running Default job...")
152152
job_type = "Default"
153153

154154
self._init_sagemaker_session_if_does_not_exist()

0 commit comments

Comments
 (0)