You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/08/28 14:58:30 UTC

[airflow] branch master updated: Removed bad characters from AWS operator (#10590)

This is an automated email from the ASF dual-hosted git repository.

kamilbregula pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 8969b71  Removed bad characters from AWS operator (#10590)
8969b71 is described below

commit 8969b7185ebc3c90168ce9a2fb97dfbc74d2bed9
Author: Michał Słowikowski <mi...@gmail.com>
AuthorDate: Fri Aug 28 16:57:54 2020 +0200

    Removed bad characters from AWS operator (#10590)
---
 airflow/providers/amazon/aws/operators/athena.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/amazon/aws/operators/athena.py b/airflow/providers/amazon/aws/operators/athena.py
index 453dd3b..7a8bc2a 100644
--- a/airflow/providers/amazon/aws/operators/athena.py
+++ b/airflow/providers/amazon/aws/operators/athena.py
@@ -127,7 +127,7 @@ class AWSAthenaOperator(BaseOperator):
         Cancel the submitted athena query
         """
         if self.query_execution_id:
-            self.log.info('⚰️⚰️⚰️ Received a kill Signal. Time to Die')
+            self.log.info('Received a kill signal.')
             self.log.info('Stopping Query with executionId - %s', self.query_execution_id)
             response = self.hook.stop_query(self.query_execution_id)
             http_status_code = None