root: catch error in analytics on startup

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-11-10 11:28:08 +01:00
parent 0a413fe21a
commit e73606b54d
1 changed files with 18 additions and 13 deletions

View File

@ -435,6 +435,7 @@ if _ERROR_REPORTING:
if not CONFIG.y_bool("disable_startup_analytics", False):
should_send = env not in ["dev", "ci"]
if should_send:
try:
get_http_session().post(
"https://goauthentik.io/api/event",
json={
@ -447,7 +448,11 @@ if not CONFIG.y_bool("disable_startup_analytics", False):
"User-Agent": sha512(SECRET_KEY.encode("ascii")).hexdigest()[:16],
"Content-Type": "application/json",
},
timeout=5,
)
# pylint: disable=bare-except
except: # nosec
pass
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.1/howto/static-files/