Skip to content
Snippets Groups Projects
Commit ff6bd0b6 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge branch 'master-stable'

parents c7bcd372 640a81a7
No related branches found
No related tags found
No related merge requests found
......@@ -72,8 +72,10 @@ class TarantoolBoxServer:
self.sigchld_handler = signal.SIG_DFL
else:
def sigchld_handler(signo, frame):
os.wait()
os.wait3(os.WNOHANG)
print >>sys.stderr, "** The child has terminated abnormally: **"
traceback.print_stack(frame)
signal.signal(signal.SIGCHLD, sigchld_handler)
self.sigchld_handler = sigchld_handler
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment