diff options
author | Callum Prentice <callum@gmail.com> | 2016-12-06 13:00:16 -0800 |
---|---|---|
committer | Callum Prentice <callum@gmail.com> | 2016-12-06 13:00:16 -0800 |
commit | 476f5496bb23f6eb93b1d1f0fdda379f385f2035 (patch) | |
tree | 588e56f32db31286609b3d7dc7d1e4ef7b6b394c /indra/llcorehttp/tests | |
parent | be04be34557355652ad2318904335eafed30add9 (diff) | |
parent | 199d3c5675b4acd00e50b0fb0a2ebe01985e668d (diff) |
Merge with fix to run packages-formatter
Diffstat (limited to 'indra/llcorehttp/tests')
-rwxr-xr-x | indra/llcorehttp/tests/test_llcorehttp_peer.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/llcorehttp/tests/test_llcorehttp_peer.py b/indra/llcorehttp/tests/test_llcorehttp_peer.py index cc636d8d87..caa204b519 100755 --- a/indra/llcorehttp/tests/test_llcorehttp_peer.py +++ b/indra/llcorehttp/tests/test_llcorehttp_peer.py @@ -40,7 +40,6 @@ try: except ImportError: from StringIO import StringIO from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler -from SocketServer import ThreadingMixIn from llbase.fastest_elementtree import parse as xml_parse from llbase import llsd @@ -274,7 +273,7 @@ class TestHTTPRequestHandler(BaseHTTPRequestHandler): # Suppress error output as well pass -class Server(ThreadingMixIn, HTTPServer): +class Server(HTTPServer): # This pernicious flag is on by default in HTTPServer. But proper # operation of freeport() absolutely depends on it being off. allow_reuse_address = False @@ -284,8 +283,7 @@ class Server(ThreadingMixIn, HTTPServer): # to stderr which annoys some. Disable this override to get # default behavior which *shouldn't* cause the program to return # a failure status. - if not VERBOSE: - def handle_error(self, request, client_address): + def handle_error(self, request, client_address): print '-'*40 print 'Ignoring exception during processing of request from', print client_address |