Skip to content

Commit

Permalink
Removed bad characters from AWS operator (apache#10590)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalslowikowski00 authored Aug 28, 2020
1 parent 5f403a8 commit 8969b71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/amazon/aws/operators/athena.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def on_kill(self) -> None:
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
Expand Down

0 comments on commit 8969b71

Please sign in to comment.