add a health check to ussd

This commit is contained in:
Blair Vanderlugt 2021-08-09 11:43:47 -07:00
parent b7942ddcfa
commit 46de0401ec
1 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,10 @@ def application(env, start_response):
if get_request_endpoint(env) == '/pin':
return handle_pin_requests(env, session, errors_headers, start_response)
if get_request_endpoint(env) == '/healthz':
start_response('200 OK', headers)
return [b'']
response, message = locked_accounts(env, session)
response_bytes, headers = with_content_headers(headers, response)
start_response(message, headers)