summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-12-06 09:32:36 -0500
committerNat Goodspeed <nat@lindenlab.com>2016-12-06 09:32:36 -0500
commite9a9e3d4bafab0e40a8ed3a65dfd4474ab7bb938 (patch)
treec9cea0f9115cd0b7eb8cf30999e3ab8c703fcfbf /indra
parent05d58c91ef55fd90ea2f3e0f1a1199ac5e690b30 (diff)
DRTVWR-418: Try for more llcorehttp tests error diagnostics.
Diffstat (limited to 'indra')
-rwxr-xr-xindra/llcorehttp/tests/test_llcorehttp_peer.py3
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