aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/compute
diff options
context:
space:
mode:
Diffstat (limited to 'src/zenserver/compute')
-rw-r--r--src/zenserver/compute/computeserver.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/zenserver/compute/computeserver.cpp b/src/zenserver/compute/computeserver.cpp
index b110f7538..4c39e8870 100644
--- a/src/zenserver/compute/computeserver.cpp
+++ b/src/zenserver/compute/computeserver.cpp
@@ -982,10 +982,14 @@ ZenComputeServer::Run()
SetNewState(kRunning);
- OnReady();
-
+ // Register the self-session and replay the backlog into it BEFORE
+ // OnReady disables the backlog — otherwise the in-proc session sink
+ // attaches against a disabled backlog and shows nothing from the
+ // startup window.
StartSelfSession("zencompute");
+ OnReady();
+
PostAnnounce();
EnqueueAnnounceTimer();
InitializeOrchestratorWebSocket();