From d59ffe2cc1614bbb11296904a0ba87465796d63b Mon Sep 17 00:00:00 2001 From: AIIrondev Date: Tue, 25 Aug 2026 19:14:44 +0200 Subject: [PATCH] thread managment --- Website/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/main.py b/Website/main.py index 2e40dd3..b582282 100644 --- a/Website/main.py +++ b/Website/main.py @@ -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()