triple the mdns timeout

This commit is contained in:
Asim Aslam 2019-11-29 13:05:07 +00:00
parent 76b4e78a6a
commit 6bf4828296

View File

@ -51,7 +51,7 @@ type mdnsRegistry struct {
func newRegistry(opts ...Option) Registry {
options := Options{
Context: context.Background(),
Timeout: time.Millisecond * 10,
Timeout: time.Millisecond * 30,
}
for _, o := range opts {