We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4c8ba commit d0da9fbCopy full SHA for d0da9fb
pkg/topology/kademlia/kademlia.go
@@ -505,7 +505,7 @@ func (k *Kad) manage() {
505
select {
506
case <-k.quit:
507
return
508
- case <-time.After(30 * time.Second):
+ case <-time.After(15 * time.Second):
509
start := time.Now()
510
if err := k.collector.Flush(); err != nil {
511
k.metrics.InternalMetricsFlushTotalErrors.Inc()
@@ -588,6 +588,10 @@ func (k *Kad) Start(_ context.Context) error {
588
k.metrics.StartAddAddressBookOverlaysTime.Observe(float64(time.Since(start).Nanoseconds()))
589
}()
590
591
+ // trigger the first manage loop immediately so that
592
+ // we can start connecting to the bootnode quickly
593
+ k.notifyManageLoop()
594
+
595
return nil
596
}
597
0 commit comments