Merge branch 'issue142' into 'master'
commit352096f9903961915921ba2adfbe80d0467fdfb5
authorBarry Warsaw <barry@python.org>
Tue, 25 Aug 2015 00:33:14 +0000 (25 00:33 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 25 Aug 2015 00:33:14 +0000 (25 00:33 +0000)
tree52b074c8de5e81cf2019b036022aa779a069c01c
parentc265a58eea8bb7abbdaa4cdbc0f25cafb1d78626
parent43627ee55a8bb9e876c8fcda3878326f72c8a5fa
Merge branch 'issue142' into 'master'

Send REST server stderr to the http log file when the client hangs up

When the client hangs up, we can't actually catch the BrokenPipeError because
of the way Python stdlib's wsgiref.simple_server is structured.  However, we
can ensure that the error messages won't get printed to stderr, but to our
http log file instead.

Closes #142

See merge request !36