Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: remoting/tools/me2me_virtual_host.py

Issue 8888001: Handle SIGHUP in me2me_virtual_host.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/tools/me2me_virtual_host.py
diff --git a/remoting/tools/me2me_virtual_host.py b/remoting/tools/me2me_virtual_host.py
index f8a8baaa3566e7e22119527f71aa5f5a4bc090ca..19987b2576b477f97a97436d7695815e191fd49b 100755
--- a/remoting/tools/me2me_virtual_host.py
+++ b/remoting/tools/me2me_virtual_host.py
@@ -271,7 +271,7 @@ class Desktop:
def main():
atexit.register(cleanup)
- for s in [signal.SIGINT, signal.SIGTERM]:
+ for s in [signal.SIGHUP, signal.SIGINT, signal.SIGTERM]:
signal.signal(s, signal_handler)
# Ensure full path to config directory exists.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698