lib/discover: Increase global discovery timeout (#8303)

This commit is contained in:
Simon Frei
2022-04-23 16:12:25 +02:00
committed by GitHub
parent 89f5d0d400
commit 6a7fc49c6b
+1 -1
View File
@@ -46,7 +46,7 @@ type httpClient interface {
const ( const (
defaultReannounceInterval = 30 * time.Minute defaultReannounceInterval = 30 * time.Minute
announceErrorRetryInterval = 5 * time.Minute announceErrorRetryInterval = 5 * time.Minute
requestTimeout = 5 * time.Second requestTimeout = 30 * time.Second
maxAddressChangesBetweenAnnouncements = 10 maxAddressChangesBetweenAnnouncements = 10
) )