HTTPInterface will catch all Requests exceptions now when shutting down.

This commit is contained in:
Paulus Schoutsen 2013-09-30 18:32:44 -07:00
parent a491df761f
commit ef1dbac124
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class HTTPInterface(threading.Thread):
# Trigger a fake request to get the server to quit
try:
requests.get("http://127.0.0.1:{}".format(SERVER_PORT), timeout=0.001)
except requests.exceptions.Timeout:
except requests.exceptions.RequestException:
pass
class RequestHandler(BaseHTTPRequestHandler):