diff --git a/integration-cli/docker_utils.go b/integration-cli/docker_utils.go index 8ba8d12bdb..1c50849020 100644 --- a/integration-cli/docker_utils.go +++ b/integration-cli/docker_utils.go @@ -49,15 +49,6 @@ type Daemon struct { userlandProxy bool } -func enableUserlandProxy() bool { - if env := os.Getenv("DOCKER_USERLANDPROXY"); env != "" { - if val, err := strconv.ParseBool(env); err != nil { - return val - } - } - return true -} - // NewDaemon returns a Daemon instance to be used for testing. // This will create a directory such as d123456789 in the folder specified by $DEST. // The daemon will not automatically start.