diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2016-12-06 09:32:36 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2016-12-06 09:32:36 -0500 |
commit | e9a9e3d4bafab0e40a8ed3a65dfd4474ab7bb938 (patch) | |
tree | c9cea0f9115cd0b7eb8cf30999e3ab8c703fcfbf /indra | |
parent | 05d58c91ef55fd90ea2f3e0f1a1199ac5e690b30 (diff) |
DRTVWR-418: Try for more llcorehttp tests error diagnostics.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/llcorehttp/tests/test_llcorehttp_peer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcorehttp/tests/test_llcorehttp_peer.py b/indra/llcorehttp/tests/test_llcorehttp_peer.py index 3ec9cd7d4c..cc636d8d87 100755 --- a/indra/llcorehttp/tests/test_llcorehttp_peer.py +++ b/indra/llcorehttp/tests/test_llcorehttp_peer.py @@ -284,7 +284,8 @@ 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. - def handle_error(self, request, client_address): + if not VERBOSE: + def handle_error(self, request, client_address): print '-'*40 print 'Ignoring exception during processing of request from', print client_address |