Skip to content

Commit

Permalink
Increase timeout of self-check
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed Jul 22, 2023
1 parent a5a5a15 commit 3cc12a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compat/selfcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ var (
systemIntegrationCheckDialNet = fmt.Sprintf("ip4:%d", uint8(SystemIntegrationCheckProtocol))
systemIntegrationCheckDialIP = SystemIntegrationCheckDstIP.String()
systemIntegrationCheckPackets = make(chan packet.Packet, 1)
systemIntegrationCheckWaitDuration = 20 * time.Second
systemIntegrationCheckWaitDuration = 40 * time.Second

// DNSCheckInternalDomainScope is the domain scope to use for dns checks.
DNSCheckInternalDomainScope = ".self-check." + resolver.InternalSpecialUseDomain
dnsCheckReceivedDomain = make(chan string, 1)
dnsCheckWaitDuration = 20 * time.Second
dnsCheckWaitDuration = 40 * time.Second
dnsCheckAnswerLock sync.Mutex
dnsCheckAnswer net.IP
)
Expand Down

0 comments on commit 3cc12a3

Please sign in to comment.