Commit Diff


commit - 7a91789030cb2a25c5d5d5f1ca08e8c4fdf641fa
commit + aca863907e1c5bdbd108f4be17583083d2779e0a
blob - 2c5c35321400333eb777b1c51c8fde0ca36eb4e2
blob + 48de8c9d3bf9b0260886a852958d80913d770a58
--- test/app-luatest/httpd.py
+++ test/app-luatest/httpd.py
@@ -4,7 +4,10 @@ import sys
 import tempfile
 from gevent.pywsgi import WSGIServer
 from gevent import spawn, sleep, socket
+from signal import signal, SIGPIPE, SIG_DFL
 
+signal(SIGPIPE, SIG_DFL)
+
 def absent():
     code = "500 Server Error"
     headers = [("Content-Type", "application/json")]