Skip to content

Commit 582243e

Browse files
chopperbrianoclaude
andcommitted
Dashboard: clarify "node not yet listed" wait time (win.22)
The bare "this node not yet listed" status was alarming users who'd just finished setting things up — they couldn't tell whether something was wrong or whether the server just hadn't gotten around to them yet. Reword to "awaiting server registration (can take a few hours)" so it's clear this is a normal post-subscribe waiting period. mctrivia's server has its own crawl schedule (verify the node over libp2p, then refresh map.json), and a few hours is the typical post-subscribe lag. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent dd53600 commit 582243e

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ SET(PATCH_VERSION 0)
4040
SET(SO_VERSION 0)
4141

4242
# Windows port build number (increment for each Windows-specific release)
43-
SET(WIN_BUILD 21)
43+
SET(WIN_BUILD 22)
4444

4545
# Add source directory
4646
include_directories(src)

src/ConsoleDashboard.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,11 @@ void ConsoleDashboard::checkPspRegistration() {
582582
if (selfListed) {
583583
_pspStatus = "Pool reachable - this node is listed";
584584
} else {
585-
_pspStatus = "Pool reachable - this node not yet listed";
585+
// Server-side registration is not instant. Once keepalives start
586+
// arriving, mctrivia's server has to crawl us, verify the pinned
587+
// content over libp2p, and refresh map.json on its own schedule.
588+
// In practice this takes a few hours after a brand-new subscribe.
589+
_pspStatus = "Pool reachable - awaiting server registration (can take a few hours)";
586590
}
587591
_lastPspCheck = now; // cache for 10 min
588592
} catch (...) {

0 commit comments

Comments
 (0)