Skip to content

Commit

Permalink
jorgebastida#139 - ignore BrokenPipeError
Browse files Browse the repository at this point in the history
  • Loading branch information
n2N8Z authored Jul 31, 2020
1 parent 0886184 commit 4eeb041
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions awslogs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ def consumer():
except KeyboardInterrupt:
print('Closing...\n')
os._exit(0)
except BrokenPipeError:
pass

def list_groups(self):
"""Lists available CloudWatch logs groups"""
Expand Down

0 comments on commit 4eeb041

Please sign in to comment.