You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/12/19 10:27:35 UTC

[GitHub] [airflow] eladkal commented on a change in pull request #20332: Standardize AWS ECS naming

eladkal commented on a change in pull request #20332:
URL: https://github.com/apache/airflow/pull/20332#discussion_r771928797



##########
File path: airflow/providers/amazon/aws/exceptions.py
##########
@@ -18,12 +18,29 @@
 #
 # Note: Any AirflowException raised is expected to cause the TaskInstance
 #       to be marked in an ERROR state
+import warnings
 
 
-class ECSOperatorError(Exception):
+class EcsOperatorError(Exception):
     """Raise when ECS cannot handle the request."""
 
     def __init__(self, failures: list, message: str):
         self.failures = failures
         self.message = message
         super().__init__(message)

Review comment:
       ahh missed it 




-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org