Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2008-05-23 05:22:33 (GMT)
committer Chris Ball <cjb@laptop.org>2008-05-23 05:22:33 (GMT)
commitf8e0fab56fa16e8a4ab36a3465ad628bc9bf0a92 (patch)
tree41cb58209cdf29b1bbf5a33dc07a7d8e5fbd8b53 /activity.py
parent9f852bb53d2ae1d8e02604c0c42673b0d9a3760a (diff)
Send SIGTERM instead of SIGHUP on close. Needs more testing.
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index c70ceea..72f594d 100644
--- a/activity.py
+++ b/activity.py
@@ -59,5 +59,5 @@ class WikipediaActivity(webactivity.WebActivity):
def kill_server(self):
print "Stopping server...\n"
- os.kill(self.server_pid, signal.SIGHUP)
+ os.kill(self.server_pid, signal.SIGTERM)