Skip to content

Commit

Permalink
Signed-off-by: Guy Rozendorn <guy@rzn.co.il>
Browse files Browse the repository at this point in the history
Conflicts:
	rpyc/utils/server.py
(cherry picked from commit 779ba40)

Signed-off-by: Guy Rozendorn <guy@rzn.co.il>
  • Loading branch information
tomerfiliba authored and grzn committed Nov 27, 2012
1 parent e5e6a2d commit fe7647b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rpyc/utils/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ def _accept_method(self, sock):
try:
self.logger.debug("child process created")
signal.signal(signal.SIGCHLD, self._prevhandler)
signal.siginterrupt(signal.SIGCHLD, False) # issue #76
#76: call signal.siginterrupt(False) in forked child
signal.siginterrupt(signal.SIGCHLD, False)
self.listener.close()
self.clients.clear()
self._authenticate_and_serve_client(sock)
Expand Down

0 comments on commit fe7647b

Please sign in to comment.