예제 #1
0
 def handle_quit(self):
     self.controller.add_job(None, make_json("quit"))
예제 #2
0
 def handle_hup(self):
     self.controller.add_job(None, make_json("reload", graceful=True,
                                             async=True))
예제 #3
0
 def handle_hup(self):
     self.controller.dispatch((None, make_json("reload", graceful=True)))
예제 #4
0
 def handle_quit(self):
     self.controller.dispatch((None, make_json("quit")))
예제 #5
0
 def handle_hup(self):
     self.controller.dispatch((None, make_json("reload", graceful=True)))
예제 #6
0
 def handle_quit(self):
     self.controller.dispatch((None, make_json("quit")))
예제 #7
0
파일: sighandler.py 프로젝트: jrgm/circus
 def handle_quit(self):
     self.controller.add_job(None, make_json("quit", graceful=True))