Issue #21201: Improves readability of multiprocessing error message from server to client for certain exceptions

This commit is contained in:
Davin Potts 2016-09-08 14:40:36 -05:00
parent 014d52ffc4
commit 37156a70b9
2 changed files with 4 additions and 1 deletions

View file

@ -275,7 +275,7 @@ class Server(object):
try:
send(msg)
except Exception as e:
send(('#UNSERIALIZABLE', repr(msg)))
send(('#UNSERIALIZABLE', format_exc()))
except Exception as e:
util.info('exception in thread serving %r',
threading.current_thread().name)