Skip to content

Commit

Permalink
fixup! [AIRFLOW-5027] Grab CloudWatch logs after ECS task has finished (
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil committed Aug 30, 2019
1 parent 5764715 commit 0741da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/contrib/hooks/aws_logs_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class AwsLogsHook(AwsHook):

def __init__(self, region_name=None, *args, **kwargs):
self.region_name = region_name
super(AwsLogsHook).__init__(*args, **kwargs)
super(AwsLogsHook, self).__init__(*args, **kwargs)

def get_conn(self):
"""
Expand Down

0 comments on commit 0741da9

Please sign in to comment.