# HG changeset patch # User Goffi # Date 1493248197 -7200 # Node ID a21fee7e30ee66c8518e09e8a38bdf015e1e1b98 # Parent e4c13a995e0b1fb64936360389ad2029f564da64 server (constants): added HTTP_INTERNAL_ERROR and HTTP_SERVICE_UNAVAILABLE diff -r e4c13a995e0b -r a21fee7e30ee src/server/constants.py --- a/src/server/constants.py Mon Apr 17 20:44:10 2017 +0200 +++ b/src/server/constants.py Thu Apr 27 01:09:57 2017 +0200 @@ -66,3 +66,5 @@ HTTP_BAD_REQUEST = 400 HTTP_UNAUTHORIZED = 401 HTTP_NOT_FOUND = 404 + HTTP_INTERNAL_ERROR = 500 + HTTP_SERVICE_UNAVAILABLE = 503