Merge pull request #25 from Marginal/retire_v1

Add reason text to reply for outdated schemas.
This commit is contained in:
AnthorNet 2015-06-20 06:14:24 +02:00
commit e8e705391d

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."