summaryrefslogtreecommitdiff
path: root/kvmd/plugins/auth
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/plugins/auth')
-rw-r--r--kvmd/plugins/auth/http.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/kvmd/plugins/auth/http.py b/kvmd/plugins/auth/http.py
index a79e327d..7e8d6c1e 100644
--- a/kvmd/plugins/auth/http.py
+++ b/kvmd/plugins/auth/http.py
@@ -20,8 +20,6 @@
# ========================================================================== #
-import asyncio
-
from typing import Dict
from typing import Optional
@@ -92,8 +90,6 @@ class Plugin(BaseAuthService):
response.raise_for_status()
assert response.status == 200
return True
- except asyncio.CancelledError: # pylint: disable=try-except-raise
- raise
except Exception:
get_logger().exception("Failed HTTP auth request for user %r", user)
return False