Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: CLI dies if output pipe is broken. #58 #61

Closed
wants to merge 2 commits into from
Closed

Fix: CLI dies if output pipe is broken. #58 #61

wants to merge 2 commits into from

Conversation

derekbekoe
Copy link
Member

  1. add SIGINT handler for Ctrl+C interruptions.
  2. add SIGPIPE handler for BrokenPipeError

#58

2. add SIGPIPE handler for BrokenPipeError

import azure.cli.main

signal.signal(signal.SIGINT, lambda signum, frame: sys.exit(1))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chatted offline. Conclusion is to use standard exceptions instead of registering signal handlers since that allows for having a more "normal" clean-up logic (i.e. try/finally)

We'll have to take differences in Python2 & 3 into account (ex. BrokenPipeException was introduced in 3.something)

# Conflicts:
#	src/azure/cli/__main__.py
@johanste
Copy link
Member

Per offline discussion, we will revisit and use try/catch instead of signal/exit(-1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants