Compare commits

...

2 Commits

Author SHA1 Message Date
6da73037ce lifecycle: fix arguments not being passed to worker command (cherry-pick #14574) (#14621)
lifecycle: fix arguments not being passed to worker command (#14574)

Co-authored-by: Jens L. <jens@goauthentik.io>
2025-05-22 17:20:12 +02:00
8e84fe6efd core: Bump django to 5.0.14, backport 2025.2 (#13997)
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
2025-04-11 13:55:36 +02:00
3 changed files with 8 additions and 7 deletions

View File

@ -82,7 +82,8 @@ if [[ "$1" == "server" ]]; then
run_authentik
elif [[ "$1" == "worker" ]]; then
set_mode "worker"
check_if_root "python -m manage worker"
shift
check_if_root "python -m manage worker $@"
elif [[ "$1" == "worker-status" ]]; then
wait_for_db
celery -A authentik.root.celery flower \

10
poetry.lock generated
View File

@ -1,4 +1,4 @@
# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand.
# This file is automatically @generated by Poetry 2.1.2 and should not be changed by hand.
[[package]]
name = "aiohappyeyeballs"
@ -1402,14 +1402,14 @@ dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"]
[[package]]
name = "django"
version = "5.0.12"
version = "5.0.14"
description = "A high-level Python web framework that encourages rapid development and clean, pragmatic design."
optional = false
python-versions = ">=3.10"
groups = ["main", "dev"]
files = [
{file = "Django-5.0.12-py3-none-any.whl", hash = "sha256:3566604af111f586a1c9d49cb14ba6c607a0ccbbf87f57d98872cd8aae7d48ad"},
{file = "Django-5.0.12.tar.gz", hash = "sha256:05097ea026cceb2db4db0655ecf77cc96b0753ac6a367280e458e603f6556f53"},
{file = "Django-5.0.14-py3-none-any.whl", hash = "sha256:e762bef8629ee704de215ebbd32062b84f4e56327eed412e5544f6f6eb1dfd74"},
{file = "Django-5.0.14.tar.gz", hash = "sha256:29019a5763dbd48da1720d687c3522ef40d1c61be6fb2fad27ed79e9f655bc11"},
]
[package.dependencies]
@ -6113,4 +6113,4 @@ files = [
[metadata]
lock-version = "2.1"
python-versions = "~3.12"
content-hash = "f6b99547f6fdf01390c12a8fb04331935ea4f67a1a1500b1d23b08c3b426787d"
content-hash = "7b09253371b1a0b5fe748567273847c10161f5f05591ecfd634981c21241ab9a"

View File

@ -91,7 +91,7 @@ cryptography = "*"
dacite = "*"
deepmerge = "*"
defusedxml = "*"
django = "*"
django = "5.0.14"
django-countries = "*"
django-cte = "*"
django-filter = "*"