Commit 1a58b8ac by Oleksandr Barabash

v1_health_check not returns application/json

parent 5ed0a29b
...@@ -168,7 +168,7 @@ async def v1_health_check(_request: Request) -> Response: ...@@ -168,7 +168,7 @@ async def v1_health_check(_request: Request) -> Response:
# encrypted_data = await KEY_VAULT_CLIENT.encrypt(key, b"hello") # encrypted_data = await KEY_VAULT_CLIENT.encrypt(key, b"hello")
# decrypted_data = await KEY_VAULT_CLIENT.decrypt(key, encrypted_data) # decrypted_data = await KEY_VAULT_CLIENT.decrypt(key, encrypted_data)
Log.i(TAG, "v1_health_check::ok") Log.i(TAG, "v1_health_check::ok")
return Response(status=HTTPStatus.OK) return Response(status=HTTPStatus.OK, content_type="application/json")
except Exception as e: except Exception as e:
Log.e(TAG, f"v1_health_check::error:{e}", sys.exc_info()) Log.e(TAG, f"v1_health_check::error:{e}", sys.exc_info())
raise raise
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment