From 47b31fe0c37e5d0660654e20f33fca36c69057fb Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Tue, 5 Aug 2025 23:47:23 +0200 Subject: [PATCH] feat(daemon): accelerated client startup note (#10859) this ensures user is not expecting improved performance from the start and also they know when they run accelerated client, which is pretty expensive --- cmd/ipfs/kubo/daemon.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/cmd/ipfs/kubo/daemon.go b/cmd/ipfs/kubo/daemon.go index 94b633f79..c6fb6b8cb 100644 --- a/cmd/ipfs/kubo/daemon.go +++ b/cmd/ipfs/kubo/daemon.go @@ -646,6 +646,17 @@ take effect. ⚠️ Local CIDs will not be announced to Amino DHT, making them impossible to retrieve without manual peering ⚠️ If this is not intentional, call 'ipfs config profile apply announce-on', or set 'Reprovider.Interval=22h' +`) + } + + // Inform user about Routing.AcceleratedDHTClient when enabled + if cfg.Routing.AcceleratedDHTClient.WithDefault(config.DefaultAcceleratedDHTClient) { + fmt.Print(` + +ℹ️ Routing.AcceleratedDHTClient is enabled for faster content discovery +ℹ️ and DHT provides. Routing table is initializing. IPFS is ready to use, +ℹ️ but performance will improve over time as more peers are discovered + `) }