Add reason text to reply for outdated schemas.

This commit is contained in:
Jonathan Harris 2015-06-20 00:28:50 +01:00
parent c0d4f4c8b0
commit 1f85be3beb

View File

@ -132,7 +132,7 @@ def parse_and_error_handle(data):
# Here we check if an outdated schema has been passed
if parsed_message["$schemaRef"] in Settings.GATEWAY_OUTDATED_SCHEMAS.keys():
response.status = 426
response.status = '426 Upgrade Required' # Bottle (and underlying httplib) don't know this one
statsCollector.tally("outdated")
return "FAIL: The schema you have used need an upgrade. Update your software."