Make the ping server return no content

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-08-15 02:44:37 +03:00
parent ff34f8a66e
commit 019426bc9b
Signed by untrusted user who does not match committer: ari
GPG key ID: A50D5B4B599AF8A2

View file

@ -544,7 +544,7 @@ def main() -> int:
@_ping_app.route("/")
def _ping():
return "1"
return ""
def _ping_app_run():
try: