diff --git a/lifecycle/gunicorn.conf.py b/lifecycle/gunicorn.conf.py index e579375b9..48c5f76cd 100644 --- a/lifecycle/gunicorn.conf.py +++ b/lifecycle/gunicorn.conf.py @@ -1,6 +1,5 @@ """Gunicorn config""" import os -import pwd from hashlib import sha512 from multiprocessing import cpu_count from os import makedirs @@ -23,13 +22,6 @@ if TYPE_CHECKING: bind = "127.0.0.1:8000" -try: - pwd.getpwnam("authentik") - user = "authentik" - group = "authentik" -except KeyError: - pass - _tmp = Path(gettempdir()) worker_class = "lifecycle.worker.DjangoUvicornWorker" worker_tmp_dir = str(_tmp.joinpath("authentik_worker_tmp"))