You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
)
funcmain() {
for {
_, err:=net.LookupHost("google.com")
iferr!=nil {
fmt.Println(err)
}
fmt.Print(".")
}
}
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: