@cryptotaxi247 / kubo / commits / 47b31fe0c

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

Marcin Rataj committed Aug 5, 2025 at 23:47 UTC 47b31fe0c37e5d0660654e20f33fca36c69057fb
1 file changed +11
cmd/ipfs/kubo/daemon.go
+11
@@ -646,6 +646,17 @@ take effect.
646 ⚠️ Local CIDs will not be announced to Amino DHT, making them impossible to retrieve without manual peering
647 ⚠️ If this is not intentional, call 'ipfs config profile apply announce-on', or set 'Reprovider.Interval=22h'
648
649 +`)
650 + }
651 +
652 + // Inform user about Routing.AcceleratedDHTClient when enabled
653 + if cfg.Routing.AcceleratedDHTClient.WithDefault(config.DefaultAcceleratedDHTClient) {
654 + fmt.Print(`
655 +
656 +ℹ️ Routing.AcceleratedDHTClient is enabled for faster content discovery
657 +ℹ️ and DHT provides. Routing table is initializing. IPFS is ready to use,
658 +ℹ️ but performance will improve over time as more peers are discovered
659 +
660 `)
661 }
662