From e5c73cd5341cda3ce9c1d181587019d48b9fb985 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Wed, 25 Dec 2024 19:51:37 -0800 Subject: [PATCH] Remove API readiness check from admission hook We don't need API access anymore in the admission webhook. --- admission.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/admission.py b/admission.py index 532e531..10ddbe2 100644 --- a/admission.py +++ b/admission.py @@ -71,10 +71,6 @@ def handle_notify() -> None: and "update_opening" to let it process who has changed and in which direction. After altering our stream list appropriately it checks if a notification webhook needs to fire. """ - # If we don't have API creds we can't do this, abort - if not (config.API_USER and config.API_PASS): - return - # If we didn't fill out a state change, we don't need to do anything if not hasattr(cherrypy.request, "update_opening") or not hasattr(cherrypy.request, "update_stream"): return