thread managment

This commit is contained in:
2026-08-25 19:14:44 +02:00
parent fa1fdc8dea
commit d59ffe2cc1
+1 -1
View File
@@ -3743,7 +3743,7 @@ def booking_payment_async():
# Asynchronen Thread starten...
thread = threading.Thread(
target=run_tenant_provisioning_async,
args=(app._get_current_object(), user_id, tenant_slug, school_name, user_email, prov_id)
args=(app, user_id, tenant_slug, school_name, user_email, prov_id)
)
thread.start()