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
This commit is contained in:
Marcin Rataj 2025-08-05 23:47:23 +02:00 committed by GitHub
parent 458ad45bbe
commit 47b31fe0c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
`)
}