You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dbos/_admin_server.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -66,11 +66,11 @@ def do_GET(self) -> None:
66
66
elifself.path==_deactivate_path:
67
67
ifnotAdminRequestHandler.is_deactivated:
68
68
dbos_logger.info(
69
-
f"Deactivating DBOS executor {GlobalParams.executor_id} with version {GlobalParams.app_version}. This executor will complete existing workflows but will not start new workflows."
69
+
f"Deactivating DBOS executor {GlobalParams.executor_id} with version {GlobalParams.app_version}. This executor will complete existing workflows but will not create new workflows."
70
70
)
71
71
AdminRequestHandler.is_deactivated=True
72
-
# Stop all scheduled workflows, queues, and kafka loops
73
-
foreventinself.dbos.stop_events:
72
+
# Stop all event receivers (scheduler and Kafka threads)
0 commit comments