uranusjr commented on a change in pull request #19195:
URL: https://github.com/apache/airflow/pull/19195#discussion_r735336042
##########
File path: airflow/providers/amazon/aws/hooks/sagemaker.py
##########
@@ -954,3 +954,13 @@ def _list_request(
return results
else:
next_token = response["NextToken"]
+
+ def find_processing_job_by_name(self, processing_job_name: str) -> bool:
+ """
+ Query processing job existence by describe_processing_job, rather than
iterate all the jobs.
+ """
Review comment:
```suggestion
"""Query processing job existence."""
```
No need to explain something wrong if the solution is obviously correct.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]