-
Notifications
You must be signed in to change notification settings - Fork 883
DNS message ID mismatch #1070
Copy link
Copy link
Closed
moby/moby
#21780Description
Once in a while when trying to resolve a hostname from within a docker container using a Go binary I get "DNS message ID mismatch". This is happening in docker 1.11-rc2.
You can reproduce it with this script:
package main
import (
"fmt"
"net"
)
func main() {
for {
_, err := net.LookupHost("google.com")
if err != nil {
fmt.Println(err)
}
fmt.Print(".")
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels