From 31b2a3d3dba19f886bdb1da45172af7ba15460f3 Mon Sep 17 00:00:00 2001 From: Alliballibaba Date: Mon, 6 Jul 2026 22:59:42 +0200 Subject: [PATCH] Fixes hangup. --- threadinactive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threadinactive.go b/threadinactive.go index 98fba6f234..d0ee74390b 100644 --- a/threadinactive.go +++ b/threadinactive.go @@ -30,7 +30,7 @@ func (handler *inactiveThread) beforeScriptExecution() string { // wait for external signal to start or shut down thread.state.MarkAsWaiting(true) - thread.state.WaitFor(state.TransitionRequested, state.ShuttingDown, state.Rebooting) + thread.state.WaitFor(state.TransitionRequested, state.ShuttingDown, state.Rebooting, state.ForceRebooting) thread.state.MarkAsWaiting(false) return handler.beforeScriptExecution()