Skip to content

Commit

Permalink
resolver/dns: Add docstring to SetMinResolutionInterval (#7217)
Browse files Browse the repository at this point in the history
  • Loading branch information
arvindbr8 committed May 9, 2024
1 parent 070d9c7 commit 2dbbcef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resolver/dns/dns_resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@

// Package dns implements a dns resolver to be installed as the default resolver
// in grpc.
//
// Deprecated: this package is imported by grpc and should not need to be
// imported directly by users.
package dns

import (
Expand Down Expand Up @@ -53,8 +50,11 @@ func NewBuilder() resolver.Builder {
return dns.NewBuilder()
}

// SetMinResolutionInterval sets the default minimum interval at which DNS re-resolutions are
// allowed. This helps to prevent excessive re-resolution.
// SetMinResolutionInterval sets the default minimum interval at which DNS
// re-resolutions are allowed. This helps to prevent excessive re-resolution.
//
// It must be called only at application startup, before any gRPC calls are
// made. Modifying this value after initialization is not thread-safe.
func SetMinResolutionInterval(d time.Duration) {
dns.MinResolutionInterval = d
}

0 comments on commit 2dbbcef

Please sign in to comment.