Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fatal error: concurrent map writes #3576

Closed
Fank opened this issue Jul 9, 2018 · 1 comment
Closed

fatal error: concurrent map writes #3576

Fank opened this issue Jul 9, 2018 · 1 comment
Assignees
Labels
Milestone

Comments

@Fank
Copy link

Fank commented Jul 9, 2018

Do you want to request a feature or report a bug?

Bug

What did you do?

What did you expect to see?

No crash.

What did you see instead?

Crash.
I had some TLS / ACME issues, because requests were stuck in establishing secure connection.
While i was searching what is wrong, i saw traefik crashing after sometime.

Output of traefik version: (What version of Traefik are you using?)

Version:      v1.6.4
Codename:     tetedemoine
Go version:   go1.10.3
Built:        2018-06-15_03:12:50PM
OS/Arch:      linux/amd64

What is your environment & configuration (arguments, toml, provider, platform, ...)?

# traefik.toml
logLevel = "INFO"
defaultEntryPoints = ["http","https"]
[entryPoints]
  [entryPoints.http]
  address = ":80"
  compress = true
    [entryPoints.http.redirect]
      regex = "^http://(.*)"
      replacement = "https://$1"
  [entryPoints.https]
  address = ":443"
  compress = true
    [entryPoints.https.tls]
      [[entryPoints.https.tls.certificates]]
      CertFile = "/ssl/tls.crt"
      KeyFile = "/ssl/tls.key"
[kubernetes]
[acme]
email = "my@em.ail"
storage = "/acme/acme.json"
entryPoint = "https"
onHostRule = true
  [acme.httpChallenge]
  entryPoint = "http"
[web]
address = ":8080"
  [web.auth.basic]
    users = []

Running on k8s deployed via helm stable/traefik with 1.6.4 image

If applicable, please paste the log output in DEBUG level (--logLevel=DEBUG switch)

time="2018-07-09T12:03:08Z" level=info msg="Using TOML configuration file /config/traefik.toml"
time="2018-07-09T12:03:08Z" level=warning msg="web provider configuration is deprecated, you should use these options : api, rest provider, ping and metrics"
time="2018-07-09T12:03:08Z" level=info msg="Traefik version v1.6.4 built on 2018-06-15_03:12:50PM"
time="2018-07-09T12:03:08Z" level=info msg="\nStats collection is disabled.\nHelp us improve Traefik by turning this feature on :)\nMore details on: https://docs.traefik.io/basics/#collected-data\n"
time="2018-07-09T12:03:08Z" level=info msg="Preparing server http &{Address::80 TLS:<nil> Redirect:0xc4203e2c40 Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:true ProxyProtocol:<nil> ForwardedHeaders:0xc420437c40} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
time="2018-07-09T12:03:08Z" level=info msg="Preparing server https &{Address::443 TLS:0xc42044b900 Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:true ProxyProtocol:<nil> ForwardedHeaders:0xc420437c60} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
time="2018-07-09T12:03:08Z" level=info msg="Starting server on :80"
time="2018-07-09T12:03:09Z" level=info msg="Preparing server traefik &{Address::8080 TLS:<nil> Redirect:<nil> Auth:0xc4201d6c90 WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc420437c80} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
time="2018-07-09T12:03:09Z" level=info msg="Starting server on :443"
time="2018-07-09T12:03:09Z" level=info msg="Starting provider configuration.providerAggregator {}"
time="2018-07-09T12:03:09Z" level=info msg="Starting server on :8080"
time="2018-07-09T12:03:09Z" level=info msg="Starting provider *kubernetes.Provider {\"Watch\":true,\"Filename\":\"\",\"Constraints\":[],\"Trace\":false,\"TemplateVersion\":0,\"DebugLogGeneratedTemplate\":false,\"Endpoint\":\"\",\"Token\":\"\",\"CertAuthFilePath\":\"\",\"DisablePassHostHeaders\":false,\"EnablePassTLSCert\":false,\"Namespaces\":null,\"LabelSelector\":\"\",\"IngressClass\":\"\"}"
time="2018-07-09T12:03:09Z" level=info msg="Starting provider *acme.Provider {\"Email\":\"my@em.ail\",\"ACMELogging\":false,\"CAServer\":\"https://acme-v02.api.letsencrypt.org/directory\",\"Storage\":\"/acme/acme.json\",\"EntryPoint\":\"https\",\"OnHostRule\":true,\"OnDemand\":false,\"DNSChallenge\":null,\"HTTPChallenge\":{\"EntryPoint\":\"http\"},\"Domains\":null,\"Store\":{}}"
time="2018-07-09T12:03:09Z" level=info msg="ingress label selector is: \"\""
time="2018-07-09T12:03:09Z" level=info msg="Creating in-cluster Provider client"
time="2018-07-09T12:03:09Z" level=info msg="Testing certificate renew..."
time="2018-07-09T12:03:09Z" level=info msg="Server configuration reloaded on :443"
time="2018-07-09T12:03:09Z" level=info msg="Server configuration reloaded on :8080"
time="2018-07-09T12:03:09Z" level=info msg="Server configuration reloaded on :80"
time="2018-07-09T12:03:10Z" level=error msg="Failed to retrieve basic auth configuration for ingress weave/weave-scope-app: failed to load auth credentials: secret \"weave\"/\"weave-scope-auth\" not found"
time="2018-07-09T12:03:10Z" level=error msg="Failed to retrieve basic auth configuration for ingress logging/kibana: failed to load auth credentials: secret \"logging\"/\"kibana-auth\" not found"
time="2018-07-09T12:03:10Z" level=error msg="Failed to retrieve basic auth configuration for ingress metrics/metric-influxdb-influxdb: failed to load auth credentials: secret \"metrics\"/\"influxdb-auth\" not found"
time="2018-07-09T12:03:10Z" level=error msg="Failed to retrieve basic auth configuration for ingress logging/elasticsearch: failed to load auth credentials: secret \"logging\"/\"elasticsearch-auth\" not found"
time="2018-07-09T12:03:10Z" level=info msg="Server configuration reloaded on :443"
time="2018-07-09T12:03:10Z" level=info msg="Server configuration reloaded on :8080"
time="2018-07-09T12:03:10Z" level=info msg="Server configuration reloaded on :80"
time="2018-07-09T12:03:12Z" level=info msg="Server configuration reloaded on :8080"
time="2018-07-09T12:03:12Z" level=info msg="Server configuration reloaded on :80"
time="2018-07-09T12:03:12Z" level=info msg="Server configuration reloaded on :443"
time="2018-07-09T12:03:18Z" level=info msg="Server configuration reloaded on :80"
time="2018-07-09T12:03:18Z" level=info msg="Server configuration reloaded on :443"
time="2018-07-09T12:03:18Z" level=info msg="Server configuration reloaded on :8080"
time="2018-07-09T12:04:17Z" level=info msg=Register...
fatal error: concurrent map writes

goroutine 105 [running]:
runtime.throw(0x21e08fb, 0x15)
	/usr/local/go/src/runtime/panic.go:616 +0x81 fp=0xc420b2b450 sp=0xc420b2b430 pc=0x42aee1
runtime.mapassign_faststr(0x1dc11a0, 0xc4201d61e0, 0xc420bf9e60, 0x2b, 0x35f7e60)
	/usr/local/go/src/runtime/hashmap_fast.go:703 +0x3e9 fp=0xc420b2b4c0 sp=0xc420b2b450 pc=0x40bab9
github.com/containous/traefik/provider/acme.presentHTTPChallenge(0xc420bf9e00, 0x21, 0xc420bf9e60, 0x2b, 0xc420c546c0, 0x57, 0x23ce020, 0xc420609960, 0x0, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/challenge.go:73 +0x27e fp=0xc420b2b540 sp=0xc420b2b4c0 pc=0xd8dd4e
github.com/containous/traefik/provider/acme.(*Provider).Present(0x35d55c0, 0xc420bf9e00, 0x21, 0xc420bf9e60, 0x2b, 0xc420c546c0, 0x57, 0x0, 0xc420beacc7)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:331 +0x81 fp=0xc420b2b5a0 sp=0xc420b2b540 pc=0xd90d51
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*httpChallenge).Solve(0xc4215b1320, 0xc42070c5b0, 0x6a, 0xc420beacc7, 0x7, 0xc420beacd0, 0x7, 0xc420bf9e60, 0x2b, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http_challenge.go:30 +0x194 fp=0xc420b2b778 sp=0xc420b2b5a0 pc=0xa54de4
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).solveChallengeForAuthz(0xc42063b680, 0xc4216117a0, 0x1, 0x1, 0x1, 0x1)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:543 +0x1fa fp=0xc420b2b968 sp=0xc420b2b778 pc=0xa4cdea
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420aeef90, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:398 +0x2a5 fp=0xc420b2bd48 sp=0xc420b2b968 pc=0xa4b835
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420875025, 0x21, 0x0, 0x0, 0x0, 0xc4209e0f00, 0xc420747f68, 0x20, 0xc42005a6d0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f fp=0xc420b2bee8 sp=0xc420b2bd48 pc=0xd8ff7f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74 fp=0xc420b2bfa8 sp=0xc420b2bee8 pc=0xd95384
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420363200)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d fp=0xc420b2bfd0 sp=0xc420b2bfa8 pc=0x78c51d
runtime.goexit()
	/usr/local/go/src/runtime/asm_amd64.s:2361 +0x1 fp=0xc420b2bfd8 sp=0xc420b2bfd0 pc=0x45a2f1
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 1 [chan receive, 1 minutes]:
github.com/containous/traefik/server.(*Server).Wait(...)
	/go/src/github.com/containous/traefik/server/server.go:232
main.runCmd(0xc4201de000, 0xc42031efcd, 0x14)
	/go/src/github.com/containous/traefik/cmd/traefik/traefik.go:216 +0x4b8
main.main.func1(0x1f1daa0, 0xc420437c20)
	/go/src/github.com/containous/traefik/cmd/traefik/traefik.go:54 +0x42
github.com/containous/traefik/vendor/github.com/containous/staert.(*Staert).Run(0xc42020ca60, 0xc4201de000, 0xc420437c20)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/staert/staert.go:84 +0x2e
main.main()
	/go/src/github.com/containous/traefik/cmd/traefik/traefik.go:142 +0x1b19

goroutine 21 [syscall, 1 minutes]:
os/signal.signal_recv(0xc42006dfc8)
	/usr/local/go/src/runtime/sigqueue.go:139 +0xa6
os/signal.loop()
	/usr/local/go/src/os/signal/signal_unix.go:22 +0x22
created by os/signal.init.0
	/usr/local/go/src/os/signal/signal_unix.go:28 +0x41

goroutine 9 [chan receive]:
github.com/containous/traefik/vendor/github.com/golang/glog.(*loggingT).flushDaemon(0x35d5800)
	/go/src/github.com/containous/traefik/vendor/github.com/golang/glog/glog.go:879 +0x8b
created by github.com/containous/traefik/vendor/github.com/golang/glog.init.0
	/go/src/github.com/containous/traefik/vendor/github.com/golang/glog/glog.go:410 +0x203

goroutine 22 [select]:
io.(*pipe).Read(0xc4200b81e0, 0xc42065a1a4, 0xe5c, 0xe5c, 0xeb0, 0xa, 0x53)
	/usr/local/go/src/io/pipe.go:50 +0x115
io.(*PipeReader).Read(0xc4200b6038, 0xc42065a1a4, 0xe5c, 0xe5c, 0x54, 0xc42065a150, 0x53)
	/usr/local/go/src/io/pipe.go:127 +0x4c
bufio.(*Scanner).Scan(0xc420494f38, 0x1)
	/usr/local/go/src/bufio/scan.go:208 +0xbf
github.com/containous/traefik/vendor/github.com/sirupsen/logrus.(*Entry).writerScanner(0xc4200ba280, 0xc4200b6038, 0xc4204681a0)
	/go/src/github.com/containous/traefik/vendor/github.com/sirupsen/logrus/writer.go:51 +0xab
created by github.com/containous/traefik/vendor/github.com/sirupsen/logrus.(*Entry).WriterLevel
	/go/src/github.com/containous/traefik/vendor/github.com/sirupsen/logrus/writer.go:43 +0x1b9

goroutine 24 [sleep, 1 minutes]:
time.Sleep(0x8bb2c97000)
	/usr/local/go/src/runtime/time.go:102 +0x166
main.checkNewVersion.func1()
	/go/src/github.com/containous/traefik/cmd/traefik/traefik.go:283 +0x39
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc42045b4b0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 25 [chan receive]:
github.com/containous/traefik/provider/acme.(*LocalStore).listenSaveAction.func1()
	/go/src/github.com/containous/traefik/provider/acme/local_store.go:92 +0x6a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc42045b520)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 26 [chan receive, 1 minutes]:
github.com/containous/traefik/provider/acme.(*LocalStore).listenSaveAction.func1()
	/go/src/github.com/containous/traefik/provider/acme/local_store.go:92 +0x6a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc42045b540)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 27 [select, 1 minutes, locked to thread]:
runtime.gopark(0x2288200, 0x0, 0x21c5927, 0x6, 0x18, 0x1)
	/usr/local/go/src/runtime/proc.go:291 +0x11a
runtime.selectgo(0xc420068f50, 0xc420220600)
	/usr/local/go/src/runtime/select.go:392 +0xe50
runtime.ensureSigM.func1()
	/usr/local/go/src/runtime/signal_unix.go:549 +0x1f4
runtime.goexit()
	/usr/local/go/src/runtime/asm_amd64.s:2361 +0x1

goroutine 35 [chan receive, 1 minutes]:
github.com/containous/traefik/cmd.ContextWithSignal.func1(0xc4200ac1e0, 0xc42054e100)
	/go/src/github.com/containous/traefik/cmd/context.go:17 +0x39
created by github.com/containous/traefik/cmd.ContextWithSignal
	/go/src/github.com/containous/traefik/cmd/context.go:15 +0x104

goroutine 50 [chan receive, 1 minutes]:
github.com/containous/traefik/server.(*Server).StartWithContext.func1(0xc420196280, 0x23c3ac0, 0xc420976080)
	/go/src/github.com/containous/traefik/server/server.go:214 +0x7c
created by github.com/containous/traefik/server.(*Server).StartWithContext
	/go/src/github.com/containous/traefik/server/server.go:212 +0x53

goroutine 51 [sleep]:
time.Sleep(0x3b9aca00)
	/usr/local/go/src/runtime/time.go:102 +0x166
github.com/containous/traefik/vendor/github.com/thoas/stats.New.func1(0xc420978180)
	/go/src/github.com/containous/traefik/vendor/github.com/thoas/stats/stats.go:35 +0x38
created by github.com/containous/traefik/vendor/github.com/thoas/stats.New
	/go/src/github.com/containous/traefik/vendor/github.com/thoas/stats/stats.go:31 +0xfe

goroutine 36 [runnable]:
runtime.SetFinalizer(0x2106b40, 0xc42141ea80, 0x1caadc0, 0x22879c0)
	/usr/local/go/src/runtime/mfinal.go:415 +0x1d8
net.(*netFD).setAddr(0xc42141ea80, 0x23ac540, 0xc420d2bcb0, 0x23ac540, 0xc420d2bce0)
	/usr/local/go/src/net/fd_unix.go:52 +0x93
net.(*netFD).accept(0xc42044a080, 0x401127, 0xc42032f160, 0x1d6f9c0)
	/usr/local/go/src/net/fd_unix.go:255 +0x37c
net.(*TCPListener).accept(0xc420212068, 0x456ba0, 0xc420493ce0, 0xc420493ce8)
	/usr/local/go/src/net/tcpsock_posix.go:136 +0x2e
net.(*TCPListener).Accept(0xc420212068, 0x2287b28, 0xc42032f0e0, 0x23c3b80, 0xc42002c180)
	/usr/local/go/src/net/tcpsock.go:259 +0x49
net/http.(*Server).Serve(0xc42031ab60, 0x23c16c0, 0xc420212068, 0x0, 0x0)
	/usr/local/go/src/net/http/server.go:2770 +0x1a5
github.com/containous/traefik/server.(*Server).startServer(0xc420196280, 0xc420994000, 0xc42039a010, 0x0, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/server/server.go:735 +0x1ba
created by github.com/containous/traefik/server.(*Server).startHTTPServers
	/go/src/github.com/containous/traefik/server/server.go:302 +0x167

goroutine 37 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30e30, 0x72, 0x0)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42044a198, 0x72, 0xc420dc3700, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42044a198, 0xffffffffffffff00, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Accept(0xc42044a180, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:372 +0x1a8
net.(*netFD).accept(0xc42044a180, 0xc420495b48, 0xc420495b48, 0x40223c)
	/usr/local/go/src/net/fd_unix.go:238 +0x42
net.(*TCPListener).accept(0xc420212098, 0xc420be24e0, 0x1d6f9c0, 0x1d6f9c0)
	/usr/local/go/src/net/tcpsock_posix.go:136 +0x2e
net.(*TCPListener).Accept(0xc420212098, 0x4342c4, 0xc420495b80, 0x456ba0, 0xc420495bc0)
	/usr/local/go/src/net/tcpsock.go:259 +0x49
crypto/tls.(*listener).Accept(0xc420458000, 0x2287b28, 0xc420be2460, 0x23c3b80, 0xc42002d020)
	/usr/local/go/src/crypto/tls/tls.go:52 +0x37
net/http.(*Server).Serve(0xc4200812b0, 0x23b2580, 0xc420458000, 0x0, 0x0)
	/usr/local/go/src/net/http/server.go:2770 +0x1a5
net/http.(*Server).ServeTLS(0xc4200812b0, 0x23c16c0, 0xc420212098, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/http/server.go:2839 +0x27b
github.com/containous/traefik/server.(*Server).startServer(0xc420196280, 0xc420994050, 0xc42039a010, 0x0, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/server/server.go:733 +0xe2
created by github.com/containous/traefik/server.(*Server).startHTTPServers
	/go/src/github.com/containous/traefik/server/server.go:302 +0x167

goroutine 38 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x7f0ec8e30d60, 0x72, 0x0)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42044a918, 0x72, 0xc4201ca000, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42044a918, 0xffffffffffffff00, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Accept(0xc42044a900, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:372 +0x1a8
net.(*netFD).accept(0xc42044a900, 0x410b08, 0x30, 0x2007840)
	/usr/local/go/src/net/fd_unix.go:238 +0x42
net.(*TCPListener).accept(0xc420212250, 0x4db1fa, 0x2007840, 0xc4203dcc00)
	/usr/local/go/src/net/tcpsock_posix.go:136 +0x2e
net.(*TCPListener).Accept(0xc420212250, 0xc420056020, 0x1d9a680, 0x35b9190, 0x215bba0)
	/usr/local/go/src/net/tcpsock.go:259 +0x49
net/http.(*Server).Serve(0xc420081380, 0x23c16c0, 0xc420212250, 0x0, 0x0)
	/usr/local/go/src/net/http/server.go:2770 +0x1a5
github.com/containous/traefik/server.(*Server).startServer(0xc420196280, 0xc4209940a0, 0xc42039a010, 0x0, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/server/server.go:735 +0x1ba
created by github.com/containous/traefik/server.(*Server).startHTTPServers
	/go/src/github.com/containous/traefik/server/server.go:302 +0x167

goroutine 39 [select, 1 minutes]:
github.com/containous/traefik/server.(*Server).listenProviders(0xc420196280, 0xc4201c65b0)
	/go/src/github.com/containous/traefik/server/server.go:370 +0x107
github.com/containous/traefik/server.(*Server).Start.func1(0xc4201c65b0)
	/go/src/github.com/containous/traefik/server/server.go:201 +0x34
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4203dc660)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 40 [select, 1 minutes]:
github.com/containous/traefik/server.(*Server).listenConfigurations(0xc420196280, 0xc4201c6690)
	/go/src/github.com/containous/traefik/server/server.go:445 +0x107
github.com/containous/traefik/server.(*Server).Start.func2(0xc4201c6690)
	/go/src/github.com/containous/traefik/server/server.go:204 +0x34
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4203dc6f0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 45 [select, 1 minutes]:
github.com/containous/traefik/provider/acme.(*Provider).watchCertificate.func1(0xc4201c6700)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:387 +0x226
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4201d63f0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 42 [chan receive, 1 minutes]:
github.com/containous/traefik/server.(*Server).listenSignals(0xc420196280)
	/go/src/github.com/containous/traefik/server/server_signals.go:18 +0x45
created by github.com/containous/traefik/server.(*Server).Start
	/go/src/github.com/containous/traefik/server/server.go:207 +0x107

goroutine 11 [semacquire, 1 minutes]:
sync.runtime_notifyListWait(0xc4208c4028, 0x1)
	/usr/local/go/src/runtime/sema.go:510 +0x10b
sync.(*Cond).Wait(0xc4208c4018)
	/usr/local/go/src/sync/cond.go:56 +0x80
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc4208c4000, 0xc42054e040, 0x0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/delta_fifo.go:438 +0x99
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).processLoop(0xc420410900)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:150 +0x40
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.processLoop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc420662ef0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc420662ef0, 0x3b9aca00, 0x0, 0xc420466001, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc420662ef0, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run(0xc420410900, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a1
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc42030fb00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:226 +0x46a
created by github.com/containous/traefik/vendor/k8s.io/client-go/informers.(*sharedInformerFactory).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/informers/factory.go:86 +0x17d

goroutine 48 [select, 1 minutes]:
github.com/containous/traefik/server.(*Server).throttleProviderConfigReload(0xc420196280, 0x77359400, 0xc4200ab6e0, 0xc4200accc0, 0xc4201c6c40)
	/go/src/github.com/containous/traefik/server/server.go:426 +0x1f8
github.com/containous/traefik/server.(*Server).preLoadConfiguration.func1(0xc4201c6c40)
	/go/src/github.com/containous/traefik/server/server.go:398 +0x4f
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc42045e330)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 46 [select, 1 minutes]:
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1(0xc4201c6770)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:167 +0x58c
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4201d6420)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 47 [select, 1 minutes]:
github.com/containous/traefik/provider/acme.(*Provider).Provide.func2(0xc4201c6bd0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:366 +0xe9
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4201b8870)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 65 [select, 1 minutes]:
github.com/containous/traefik/vendor/github.com/eapache/channels.(*RingChannel).ringBuffer(0xc42045e3c0)
	/go/src/github.com/containous/traefik/vendor/github.com/eapache/channels/ring_channel.go:87 +0x220
created by github.com/containous/traefik/vendor/github.com/eapache/channels.NewRingChannel
	/go/src/github.com/containous/traefik/vendor/github.com/eapache/channels/ring_channel.go:32 +0x1db

goroutine 66 [select, 1 minutes]:
github.com/containous/traefik/server.(*Server).throttleProviderConfigReload.func1(0xc4201c6cb0)
	/go/src/github.com/containous/traefik/server/server.go:415 +0x135
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc42045e3f0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 10 [runnable]:
reflect.ValueOf(0x1bab000, 0xc42055ecf0, 0x1bab000, 0xc420872840, 0x16)
	/usr/local/go/src/reflect/value.go:2150 +0xd9
reflect.DeepEqual(0x1bab000, 0xc420872840, 0x1bab000, 0xc42055ecf0, 0x0)
	/usr/local/go/src/reflect/deepequal.go:192 +0xed
github.com/containous/traefik/provider/kubernetes.(*Provider).Provide.func1.1(0x0, 0x0)
	/go/src/github.com/containous/traefik/provider/kubernetes/kubernetes.go:134 +0x46a
github.com/containous/traefik/safe.OperationWithRecover.func1(0x0, 0x0)
	/go/src/github.com/containous/traefik/safe/routine.go:160 +0x62
github.com/containous/traefik/vendor/github.com/cenk/backoff.RetryNotify(0xc420468c30, 0x23a40c0, 0xc420468c40, 0x2283488, 0xc420092080, 0xc4200ab680)
	/go/src/github.com/containous/traefik/vendor/github.com/cenk/backoff/retry.go:37 +0x88
github.com/containous/traefik/provider/kubernetes.(*Provider).Provide.func1(0xc42061c000)
	/go/src/github.com/containous/traefik/provider/kubernetes/kubernetes.go:151 +0x13f
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420419470)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 12 [semacquire, 1 minutes]:
sync.runtime_notifyListWait(0xc420168928, 0x1)
	/usr/local/go/src/runtime/sema.go:510 +0x10b
sync.(*Cond).Wait(0xc420168918)
	/usr/local/go/src/sync/cond.go:56 +0x80
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc420168900, 0xc42044e690, 0x0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/delta_fifo.go:438 +0x99
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).processLoop(0xc42044ab00)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:150 +0x40
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.processLoop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc420666ef0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc420666ef0, 0x3b9aca00, 0x0, 0xc42055d101, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc420666ef0, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run(0xc42044ab00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a1
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc42030fb90, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:226 +0x46a
created by github.com/containous/traefik/vendor/k8s.io/client-go/informers.(*sharedInformerFactory).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/informers/factory.go:86 +0x17d

goroutine 13 [semacquire]:
sync.runtime_notifyListWait(0xc4201a4568, 0x60)
	/usr/local/go/src/runtime/sema.go:510 +0x10b
sync.(*Cond).Wait(0xc4201a4558)
	/usr/local/go/src/sync/cond.go:56 +0x80
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc4201a4540, 0xc4205f7890, 0x0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/delta_fifo.go:438 +0x99
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).processLoop(0xc420620000)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:150 +0x40
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.processLoop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc420491ef0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc420491ef0, 0x3b9aca00, 0x0, 0xc4204a2201, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc420491ef0, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run(0xc420620000, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a1
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc42030fc20, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:226 +0x46a
created by github.com/containous/traefik/vendor/k8s.io/client-go/informers.(*sharedInformerFactory).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/informers/factory.go:86 +0x17d

goroutine 14 [runnable]:
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.poller.func1.1(0xc420220a20, 0x5f5e100, 0x0, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:354 +0x179
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.poller.func1
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:337 +0x8c

goroutine 15 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).run(0xc420603680)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:545 +0x81
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:387 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42050aad8, 0xc420468cb0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 68 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc42050aa80, 0xc4200ace40)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:427 +0x46
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm(0xc4200ace40)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:219 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42055d0d0, 0xc4203f6be0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 29 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc42050aaf0, 0xc420594480)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:427 +0x46
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm(0xc420594480)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:219 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc4204a21e0, 0xc42059b080)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 53 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc42050aa10, 0xc4208c8000)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:427 +0x46
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm(0xc4208c8000)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:219 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc420466000, 0xc4209de040)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 54 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run.func1(0xc420220720, 0xc420410900)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:103 +0x34
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:102 +0x92

goroutine 69 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run.func1(0xc420220720, 0xc42044ab00)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:103 +0x34
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:102 +0x92

goroutine 16 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).pop(0xc420603680)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:519 +0x164
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.pop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:388 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42050aad8, 0xc420468cc0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 30 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run.func1(0xc420220720, 0xc420620000)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:103 +0x34
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:102 +0x92

goroutine 81 [chan receive]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).run(0xc420603700)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:545 +0x81
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:387 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42050ab48, 0xc420468cd0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 82 [select]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).pop(0xc420603700)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:519 +0x164
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.pop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:388 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42050ab48, 0xc420468cf0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 83 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).run(0xc420603600)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:545 +0x81
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:387 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42050aa68, 0xc420468d00)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 84 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).pop(0xc420603600)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:519 +0x164
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.pop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:388 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42050aa68, 0xc420468d10)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 70 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).watchHandler(0xc4203c6be0, 0x23a9f80, 0xc42055e330, 0xc420b4fb78, 0xc420726420, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:373 +0x25a
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc4203c6be0, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:339 +0xf63
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:204 +0x33
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc420384f18)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc420b4ff18, 0x3b9aca00, 0x0, 0xc400000001, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc420384f18, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run(0xc4203c6be0, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:203 +0x157
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run-fm(0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:122 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc42055d100, 0xc4203f6c00)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 31 [select]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).watchHandler(0xc4204c8640, 0x23a9f80, 0xc4205264b0, 0xc420845b78, 0xc4203620c0, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:373 +0x25a
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc4204c8640, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:339 +0xf63
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:204 +0x33
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc420382718)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc420845f18, 0x3b9aca00, 0x0, 0xc400000001, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc420382718, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run(0xc4204c8640, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:203 +0x157
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run-fm(0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:122 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc4204a2200, 0xc42059b0a0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 55 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).watchHandler(0xc42081a000, 0x23a9f80, 0xc42064e7b0, 0xc420b4bb78, 0xc4207260c0, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:373 +0x25a
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc42081a000, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:339 +0xf63
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:204 +0x33
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc420386f18)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc420b4bf18, 0x3b9aca00, 0x0, 0xc400000001, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc420386f18, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run(0xc42081a000, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:203 +0x157
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run-fm(0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:122 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc420466060, 0xc4209de060)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 79 [runnable]:
github.com/containous/traefik/vendor/github.com/json-iterator/go.(*structFieldDecoder).Decode(0xc42088ff60, 0xc420b5bd60, 0xc42044b600)
	/go/src/github.com/containous/traefik/vendor/github.com/json-iterator/go/feature_reflect_struct_decoder.go:960 +0x1cc
github.com/containous/traefik/vendor/github.com/json-iterator/go.(*generalStructDecoder).Decode(0xc4206f0560, 0xc420b5bd60, 0xc42044b600)
	/go/src/github.com/containous/traefik/vendor/github.com/json-iterator/go/feature_reflect_struct_decoder.go:478 +0x12b
github.com/containous/traefik/vendor/github.com/json-iterator/go.(*structFieldDecoder).Decode(0xc4209defc0, 0xc420b5bd40, 0xc42044b600)
	/go/src/github.com/containous/traefik/vendor/github.com/json-iterator/go/feature_reflect_struct_decoder.go:962 +0x5c
github.com/containous/traefik/vendor/github.com/json-iterator/go.(*fourFieldsStructDecoder).Decode(0xc4208ac320, 0xc420b5bd40, 0xc42044b600)
	/go/src/github.com/containous/traefik/vendor/github.com/json-iterator/go/feature_reflect_struct_decoder.go:624 +0x2b6
github.com/containous/traefik/vendor/github.com/json-iterator/go.(*Iterator).ReadVal(0xc42044b600, 0x218d080, 0xc420b5bd40)
	/go/src/github.com/containous/traefik/vendor/github.com/json-iterator/go/feature_reflect.go:85 +0xae
github.com/containous/traefik/vendor/github.com/json-iterator/go.(*frozenConfig).Unmarshal(0xc4201683c0, 0xc420fc2b40, 0x226, 0x240, 0x218d080, 0xc420b5bd40, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/json-iterator/go/feature_config.go:268 +0x185
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json.(*Serializer).Decode(0xc420092ec0, 0xc420fc2b40, 0x226, 0x240, 0x0, 0x0, 0x0, 0x0, 0xc420d2b890, 0xc4203477a0, ...)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go:191 +0x649
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning.DirectDecoder.Decode(0x7f0ec8e36800, 0xc420092ec0, 0xc420fc2b40, 0x226, 0x240, 0x0, 0x0, 0x0, 0xc420d2b890, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning.go:252 +0x97
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime.Decode(0x23a1b00, 0xc420468530, 0xc420fc2b40, 0x226, 0x240, 0xc420da2a40, 0xc420d2b890, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/codec.go:54 +0x6d
github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc4201fb120, 0xc420841fa8, 0x8, 0x23a7f00, 0xc4203477a0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch/decoder.go:62 +0x18a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4205264b0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:93 +0x12e
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8

goroutine 61 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).run(0xc4205ea280)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:545 +0x81
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:387 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc4208f8058, 0xc420468030)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 88 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch.func1(0xc42081a000, 0xc420220720, 0xc420221f80, 0xc4207260c0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:278 +0x172
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:272 +0x9b1

goroutine 77 [semacquire, 1 minutes]:
sync.runtime_notifyListWait(0xc4205b6a40, 0x0)
	/usr/local/go/src/runtime/sema.go:510 +0x10b
sync.(*Cond).Wait(0xc4205b6a30)
	/usr/local/go/src/sync/cond.go:56 +0x80
github.com/containous/traefik/vendor/golang.org/x/net/http2.(*pipe).Read(0xc4205b6a28, 0xc420857400, 0x200, 0x200, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/pipe.go:64 +0x8f
github.com/containous/traefik/vendor/golang.org/x/net/http2.transportResponseBody.Read(0xc4205b6a00, 0xc420857400, 0x200, 0x200, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/transport.go:1739 +0xa1
encoding/json.(*Decoder).refill(0xc42041a5a0, 0x426e7e, 0x2288288)
	/usr/local/go/src/encoding/json/stream.go:159 +0x132
encoding/json.(*Decoder).readValue(0xc42041a5a0, 0x0, 0x0, 0x100)
	/usr/local/go/src/encoding/json/stream.go:134 +0x23d
encoding/json.(*Decoder).Decode(0xc42041a5a0, 0x1dfcfa0, 0xc4206f8b80, 0x2, 0x3f3)
	/usr/local/go/src/encoding/json/stream.go:63 +0x78
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc42064e780, 0xc420734800, 0x400, 0x400, 0xc42042ff80, 0x40, 0x38)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/framer/framer.go:150 +0x295
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc4208327d0, 0x0, 0x23a9b40, 0xc42042ff80, 0x2, 0x1, 0xc420753970, 0x1, 0xc4200adb60)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go:77 +0x95
github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc4206f8b60, 0x22876c8, 0x0, 0x0, 0x0, 0xc42082e1d0, 0xc4208f6714)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch/decoder.go:49 +0x7c
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc42064e7b0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:93 +0x12e
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8

goroutine 99 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch.func1(0xc4204c8640, 0xc420220720, 0xc4208c8060, 0xc4203620c0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:278 +0x172
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:272 +0x9b1

goroutine 89 [runnable]:
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.poller.func1.1(0xc42073c120, 0x5f5e100, 0x0, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:354 +0x179
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.poller.func1
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:337 +0x8c

goroutine 86 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30af0, 0x72, 0xc420664858)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420411d98, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420411d98, 0xc4206b8000, 0x8000, 0x8000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420411d80, 0xc4206b8000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420411d80, 0xc4206b8000, 0x8000, 0x8000, 0x8, 0x8, 0x7ff3)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc4202126f8, 0xc4206b8000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
crypto/tls.(*block).readFromUntil(0xc42045ea50, 0x7f0ec8bec850, 0xc4202126f8, 0x5, 0xc4202126f8, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:493 +0x96
crypto/tls.(*Conn).readRecord(0xc4208f6380, 0x2288317, 0xc4208f64a0, 0xc420f89200)
	/usr/local/go/src/crypto/tls/conn.go:595 +0xe0
crypto/tls.(*Conn).Read(0xc4208f6380, 0xc42085b000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1156 +0x100
bufio.(*Reader).Read(0xc4201c38c0, 0xc42085c038, 0x9, 0x9, 0xc420664ca0, 0xb551e9, 0x1c1b060)
	/usr/local/go/src/bufio/bufio.go:216 +0x238
io.ReadAtLeast(0x239c660, 0xc4201c38c0, 0xc42085c038, 0x9, 0x9, 0x9, 0x2288340, 0xc420664cf8, 0xc42086a06f)
	/usr/local/go/src/io/io.go:309 +0x86
io.ReadFull(0x239c660, 0xc4201c38c0, 0xc42085c038, 0x9, 0x9, 0xc420830028, 0xc42086a06f, 0x244)
	/usr/local/go/src/io/io.go:327 +0x58
github.com/containous/traefik/vendor/golang.org/x/net/http2.readFrameHeader(0xc42085c038, 0x9, 0x9, 0x239c660, 0xc4201c38c0, 0x0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/frame.go:237 +0x7b
github.com/containous/traefik/vendor/golang.org/x/net/http2.(*Framer).ReadFrame(0xc42085c000, 0xc420393aa0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/frame.go:492 +0xa4
github.com/containous/traefik/vendor/golang.org/x/net/http2.(*clientConnReadLoop).run(0xc420664fb8, 0x2286c48, 0xc4203877b8)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/transport.go:1477 +0x8e
github.com/containous/traefik/vendor/golang.org/x/net/http2.(*ClientConn).readLoop(0xc420858000)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/transport.go:1405 +0x68
created by github.com/containous/traefik/vendor/golang.org/x/net/http2.(*Transport).newClientConn
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/transport.go:592 +0x65c

goroutine 115 [select, 1 minutes]:
github.com/containous/traefik/server.(*Server).throttleProviderConfigReload(0xc420196280, 0x77359400, 0xc4200ab6e0, 0xc4200ad9e0, 0xc42070c690)
	/go/src/github.com/containous/traefik/server/server.go:426 +0x1f8
github.com/containous/traefik/server.(*Server).preLoadConfiguration.func1(0xc42070c690)
	/go/src/github.com/containous/traefik/server/server.go:398 +0x4f
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420349890)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 90 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch.func1(0xc4203c6be0, 0xc420220720, 0xc42073c180, 0xc420726420)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:278 +0x172
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:272 +0x9b1

goroutine 93 [select]:
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.poller.func1.1(0xc4200ac2a0, 0x5f5e100, 0x0, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:354 +0x179
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.poller.func1
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:337 +0x8c

goroutine 92 [semacquire, 1 minutes]:
sync.runtime_notifyListWait(0xc4205b7440, 0xc400000000)
	/usr/local/go/src/runtime/sema.go:510 +0x10b
sync.(*Cond).Wait(0xc4205b7430)
	/usr/local/go/src/sync/cond.go:56 +0x80
github.com/containous/traefik/vendor/golang.org/x/net/http2.(*pipe).Read(0xc4205b7428, 0xc420856000, 0x200, 0x200, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/pipe.go:64 +0x8f
github.com/containous/traefik/vendor/golang.org/x/net/http2.transportResponseBody.Read(0xc4205b7400, 0xc420856000, 0x200, 0x200, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/transport.go:1739 +0xa1
encoding/json.(*Decoder).refill(0xc42041a1e0, 0x202020200a2c2274, 0x202020202020)
	/usr/local/go/src/encoding/json/stream.go:159 +0x132
encoding/json.(*Decoder).readValue(0xc42041a1e0, 0x0, 0x0, 0x1d9f9c0)
	/usr/local/go/src/encoding/json/stream.go:134 +0x23d
encoding/json.(*Decoder).Decode(0xc42041a1e0, 0x1dfcfa0, 0xc420772760, 0x796e612220202020, 0x200a5b203a22664f)
	/usr/local/go/src/encoding/json/stream.go:63 +0x78
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc42055e300, 0xc4209e4000, 0x400, 0x400, 0xc420976380, 0x40, 0x38)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/framer/framer.go:150 +0x295
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc4208ac230, 0x0, 0x23a9b40, 0xc420976380, 0x7d20227365707954, 0x2020202020200a2c, 0x2020202020202020, 0x202020200a7b2020, 0x2020202020202020)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go:77 +0x95
github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc420772740, 0x22876c8, 0x0, 0x0, 0x0, 0x496e696d22202020, 0x31203a22736d6574)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch/decoder.go:49 +0x7c
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc42055e330)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:93 +0x12e
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8

goroutine 80 [semacquire, 1 minutes]:
sync.runtime_notifyListWait(0xc42063a028, 0x1)
	/usr/local/go/src/runtime/sema.go:510 +0x10b
sync.(*Cond).Wait(0xc42063a018)
	/usr/local/go/src/sync/cond.go:56 +0x80
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc42063a000, 0xc42054e280, 0x0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/delta_fifo.go:438 +0x99
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).processLoop(0xc4205a4280)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:150 +0x40
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.processLoop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc42099cef0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc42099cef0, 0x3b9aca00, 0x0, 0xc4205e9e01, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc42099cef0, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run(0xc4205a4280, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:124 +0x2a1
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc4207483f0, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:226 +0x46a
created by github.com/containous/traefik/vendor/k8s.io/client-go/informers.(*sharedInformerFactory).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/informers/factory.go:86 +0x17d

goroutine 95 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc4208f8000, 0xc4200ac480)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:427 +0x46
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*sharedProcessor).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.run)-fm(0xc4200ac480)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:219 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc4205e9ea0, 0xc4207727e0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 96 [chan receive, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run.func1(0xc420220720, 0xc4205a4280)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:103 +0x34
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*controller).Run
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:102 +0x92

goroutine 62 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).pop(0xc4205ea280)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:519 +0x164
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*processorListener).(github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.pop)-fm()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/shared_informer.go:388 +0x2a
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc4208f8058, 0xc420468040)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 113 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).watchHandler(0xc42081b2c0, 0x23a9f80, 0xc42064ed80, 0xc420847b78, 0xc4209780c0, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:373 +0x25a
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc42081b2c0, 0xc420220720, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:339 +0xf63
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:204 +0x33
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1(0xc4209edf18)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133 +0x54
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc420847f18, 0x3b9aca00, 0x0, 0xc400000001, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134 +0xbd
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.Until(0xc4209edf18, 0x3b9aca00, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88 +0x4d
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run(0xc42081b2c0, 0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:203 +0x157
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).Run-fm(0xc420220720)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/controller.go:122 +0x34
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1()
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:54 +0x31
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1(0xc4205e9ec0, 0xc420772800)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:71 +0x4f
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait.(*Group).Start
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:69 +0x62

goroutine 116 [select, 1 minutes]:
github.com/containous/traefik/vendor/github.com/eapache/channels.(*RingChannel).ringBuffer(0xc4203498f0)
	/go/src/github.com/containous/traefik/vendor/github.com/eapache/channels/ring_channel.go:87 +0x220
created by github.com/containous/traefik/vendor/github.com/eapache/channels.NewRingChannel
	/go/src/github.com/containous/traefik/vendor/github.com/eapache/channels/ring_channel.go:32 +0x1db

goroutine 63 [select, 1 minutes]:
github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch.func1(0xc42081b2c0, 0xc420220720, 0xc42073c3c0, 0xc4209780c0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:278 +0x172
created by github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/tools/cache/reflector.go:272 +0x9b1

goroutine 101 [semacquire, 1 minutes]:
sync.runtime_notifyListWait(0xc42082e2c0, 0xc400000000)
	/usr/local/go/src/runtime/sema.go:510 +0x10b
sync.(*Cond).Wait(0xc42082e2b0)
	/usr/local/go/src/sync/cond.go:56 +0x80
github.com/containous/traefik/vendor/golang.org/x/net/http2.(*pipe).Read(0xc42082e2a8, 0xc420700000, 0x200, 0x200, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/pipe.go:64 +0x8f
github.com/containous/traefik/vendor/golang.org/x/net/http2.transportResponseBody.Read(0xc42082e280, 0xc420700000, 0x200, 0x200, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/golang.org/x/net/http2/transport.go:1739 +0xa1
encoding/json.(*Decoder).refill(0xc4207690e0, 0xc42073c418, 0xc42005b300)
	/usr/local/go/src/encoding/json/stream.go:159 +0x132
encoding/json.(*Decoder).readValue(0xc4207690e0, 0x0, 0x0, 0x1d9f9c0)
	/usr/local/go/src/encoding/json/stream.go:134 +0x23d
encoding/json.(*Decoder).Decode(0xc4207690e0, 0x1dfcfa0, 0xc4206f90c0, 0xc420747f10, 0xc420747fa6)
	/usr/local/go/src/encoding/json/stream.go:63 +0x78
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc42064ed50, 0xc4206f6000, 0x400, 0x400, 0xc42042e1c0, 0x40, 0x38)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/util/framer/framer.go:150 +0x295
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc420832140, 0x0, 0x23a9b40, 0xc42042e1c0, 0xc4203c8180, 0xc420362780, 0xc4206f9080, 0x65c00000000, 0x65e)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go:77 +0x95
github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc4206f90a0, 0x22876c8, 0x0, 0x0, 0x0, 0x1, 0x0)
	/go/src/github.com/containous/traefik/vendor/k8s.io/client-go/rest/watch/decoder.go:49 +0x7c
github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc42064ed80)
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:93 +0x12e
created by github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher
	/go/src/github.com/containous/traefik/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8

goroutine 103 [select]:
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).getAuthzForOrder(0xc42063b680, 0xc420aa8960, 0x41, 0xc420b7a8a0, 0x1, 0x1, 0xc420af7878, 0x7, 0xc42075fc00, 0x1e, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:597 +0x2b4
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420b7a8a0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:389 +0x244
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420875c55, 0x1e, 0x0, 0x0, 0x0, 0xc420097e00, 0xc4209ee768, 0x20, 0xc42005f0d0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420363140)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 117 [select, 1 minutes]:
github.com/containous/traefik/server.(*Server).throttleProviderConfigReload.func1(0xc42070c700)
	/go/src/github.com/containous/traefik/server/server.go:415 +0x135
github.com/containous/traefik/safe.(*Pool).Go.func1()
	/go/src/github.com/containous/traefik/safe/routine.go:78 +0x3a
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420349920)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 64 [select]:
net/http.(*Transport).getConn(0x35c4f80, 0xc420393b90, 0x0, 0xc42068a700, 0x5, 0xc420599280, 0x20, 0x0, 0x0, 0x4fff49)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc421556a00, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc421556a00, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc4200b6da0, 0x1c5ea60, 0xc420b2f2f8, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc421556a00, 0x0, 0x0, 0x0, 0xc4200b6da0, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc421556a00, 0xa, 0xc4215bc140, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpPost(0xc42068a700, 0x33, 0x21e06c4, 0x15, 0x239c6a0, 0xc420194000, 0xc421505680, 0x43f, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:69 +0x227
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*jws).post(0xc420a76000, 0xc42068a700, 0x33, 0xc42016f1e0, 0x4c, 0xa1, 0x0, 0xc42070b680, 0x88)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/jws.go:33 +0x174
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.postJSON(0xc420a76000, 0xc42068a700, 0x33, 0x208e0c0, 0xc4205859e0, 0x1bc85c0, 0xc420585950, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:108 +0x141
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).createOrderForIdentifiers(0xc42063b680, 0xc420b7a5b0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:515 +0x28c
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420b7a5b0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:385 +0x185
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420875295, 0x21, 0x0, 0x0, 0x0, 0xc4209e2400, 0xc4209eef68, 0x20, 0xc42005f0d0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4209797a0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 118 [select]:
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).getAuthzForOrder(0xc42063b680, 0xc420aa8910, 0x41, 0xc4201d9a70, 0x1, 0x1, 0xc420af7838, 0x7, 0xc42075f9a0, 0x1e, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:597 +0x2b4
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc4201d9a70, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:389 +0x244
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc4206d7325, 0x21, 0x0, 0x0, 0x0, 0x1a4e600, 0xc4206f4f00, 0xc42042f7c0, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4206989c0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 102 [runnable]:
github.com/containous/traefik/provider/acme.presentHTTPChallenge(0xc4216561a0, 0x1e, 0xc4209d20c0, 0x2b, 0xc4215f4660, 0x57, 0x23ce020, 0xc420609960, 0x0, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/challenge.go:76 +0x1bf
github.com/containous/traefik/provider/acme.(*Provider).Present(0x35d55c0, 0xc4216561a0, 0x1e, 0xc4209d20c0, 0x2b, 0xc4215f4660, 0x57, 0x0, 0xc420f4e280)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:331 +0x81
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*httpChallenge).Solve(0xc4215b1320, 0xc420f968c0, 0x6a, 0xc420f4e280, 0x7, 0xc420f4e287, 0x7, 0xc4209d20c0, 0x2b, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http_challenge.go:30 +0x194
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).solveChallengeForAuthz(0xc42063b680, 0xc420e31440, 0x1, 0x1, 0x1, 0x1)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:543 +0x1fa
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420b7a7d0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:398 +0x2a5
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420875a75, 0x1e, 0x0, 0x0, 0x0, 0xc4206f5000, 0xc420382768, 0x20, 0xc42005f0d0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc4203630e0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 151 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x7f0ec8e30c90, 0x72, 0xc420b878f0)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420590698, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420590698, 0xc4206f6800, 0x400, 0x400)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420590680, 0xc4206f6800, 0x400, 0x400, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420590680, 0xc4206f6800, 0x400, 0x400, 0xc420258400, 0xc4201ea460, 0xc4205c30e4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42081c058, 0xc4206f6800, 0x400, 0x400, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
crypto/tls.(*block).readFromUntil(0xc4209cef90, 0x7f0ec8bec850, 0xc42081c058, 0x5, 0xc42081c058, 0x6457ae)
	/usr/local/go/src/crypto/tls/conn.go:493 +0x96
crypto/tls.(*Conn).readRecord(0xc4202c8a80, 0x2288317, 0xc4202c8ba0, 0x456360)
	/usr/local/go/src/crypto/tls/conn.go:595 +0xe0
crypto/tls.(*Conn).Read(0xc4202c8a80, 0xc4201ea3b8, 0x9, 0x9, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1156 +0x100
io.ReadAtLeast(0x7f0ec8e36a20, 0xc4202c8a80, 0xc4201ea3b8, 0x9, 0x9, 0x9, 0x0, 0x1, 0x2)
	/usr/local/go/src/io/io.go:309 +0x86
io.ReadFull(0x7f0ec8e36a20, 0xc4202c8a80, 0xc4201ea3b8, 0x9, 0x9, 0xc4206f5200, 0xc420b87ee0, 0xc42073c780)
	/usr/local/go/src/io/io.go:327 +0x58
net/http.http2readFrameHeader(0xc4201ea3b8, 0x9, 0x9, 0x7f0ec8e36a20, 0xc4202c8a80, 0x0, 0xc400000000, 0x2, 0x2)
	/usr/local/go/src/net/http/h2_bundle.go:1517 +0x7b
net/http.(*http2Framer).ReadFrame(0xc4201ea380, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/http/h2_bundle.go:1775 +0xa4
net/http.(*http2serverConn).readFrames(0xc4201de000)
	/usr/local/go/src/net/http/h2_bundle.go:4392 +0xa9
created by net/http.(*http2serverConn).serve
	/usr/local/go/src/net/http/h2_bundle.go:4497 +0x31a

goroutine 121 [runnable]:
github.com/containous/traefik/provider/acme.presentHTTPChallenge(0xc4205994a0, 0x1e, 0xc420e28e10, 0x2b, 0xc4216fcae0, 0x57, 0x23ce020, 0xc420609960, 0x0, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/challenge.go:73 +0x27e
github.com/containous/traefik/provider/acme.(*Provider).Present(0x35d55c0, 0xc4205994a0, 0x1e, 0xc420e28e10, 0x2b, 0xc4216fcae0, 0x57, 0x0, 0xc4216b3bf0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:331 +0x81
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*httpChallenge).Solve(0xc4215b1320, 0xc42061c9a0, 0x6a, 0xc4216b3bf0, 0x7, 0xc4216b3bf7, 0x7, 0xc420e28e10, 0x2b, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http_challenge.go:30 +0x194
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).solveChallengeForAuthz(0xc42063b680, 0xc421540900, 0x1, 0x1, 0x1, 0x1)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:543 +0x1fa
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420a41a20, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:398 +0x2a5
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc4206d7895, 0x1e, 0x0, 0x0, 0x0, 0xc420386f00, 0xc4206f5380, 0xc420976940, 0x2288340)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420698ae0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 145 [runnable]:
net/http.(*Transport).getConn(0x35c4f80, 0xc4216ae360, 0x0, 0xc42068a700, 0x5, 0xc42036a120, 0x20, 0x0, 0x0, 0x4fff49)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc420b3c300, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc420b3c300, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc42081c138, 0x1c5ea60, 0xc420a9b2f8, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc420b3c300, 0x0, 0x0, 0x0, 0xc42081c138, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc420b3c300, 0xa, 0xc42004fbd0, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpPost(0xc42068a700, 0x33, 0x21e06c4, 0x15, 0x239c6a0, 0xc42047a000, 0xc420b47b00, 0x447, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:69 +0x227
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*jws).post(0xc420a76000, 0xc42068a700, 0x33, 0xc42016f130, 0x52, 0xa7, 0x0, 0xc420b89680, 0x88)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/jws.go:33 +0x174
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.postJSON(0xc420a76000, 0xc42068a700, 0x33, 0x208e0c0, 0xc4208234d0, 0x1bc85c0, 0xc420823440, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:108 +0x141
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).createOrderForIdentifiers(0xc42063b680, 0xc420b7a680, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:515 +0x28c
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420b7a680, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:385 +0x185
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420875505, 0x27, 0x0, 0x0, 0x0, 0xc4207fef00, 0xc4209ea768, 0x20, 0xc42005f0d0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420979800)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 993 [select]:
net/http.(*persistConn).writeLoop(0xc4208167e0)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 106 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x7f0ec8e30880, 0x72, 0xc4209f69a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420591218, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420591218, 0xc420c2c000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420591200, 0xc420c2c000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420591200, 0xc420c2c000, 0x1000, 0x1000, 0x456360, 0xc4209e2a80, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc4200b6788, 0xc420c2c000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420a0c6c0, 0xc420c2c000, 0x1000, 0x1000, 0xc4209f6b98, 0x4033a5, 0xc4208c8360)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420b1fc80)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420b1fc80, 0x1, 0x0, 0x0, 0x0, 0xc4208c85a0, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420a0c6c0)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 168 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30a20, 0x72, 0xc4207068f0)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420388718, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420388718, 0xc420bbe000, 0x400, 0x400)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420388700, 0xc420bbe000, 0x400, 0x400, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420388700, 0xc420bbe000, 0x400, 0x400, 0xc42156b880, 0xc4201eaa80, 0xc42141ba38)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42081c018, 0xc420bbe000, 0x400, 0x400, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
crypto/tls.(*block).readFromUntil(0xc4208739b0, 0x7f0ec8bec850, 0xc42081c018, 0x5, 0xc42081c018, 0x6457ae)
	/usr/local/go/src/crypto/tls/conn.go:493 +0x96
crypto/tls.(*Conn).readRecord(0xc420301500, 0x2288317, 0xc420301620, 0x456360)
	/usr/local/go/src/crypto/tls/conn.go:595 +0xe0
crypto/tls.(*Conn).Read(0xc420301500, 0xc4201ea9d8, 0x9, 0x9, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1156 +0x100
io.ReadAtLeast(0x7f0ec8e36a20, 0xc420301500, 0xc4201ea9d8, 0x9, 0x9, 0x9, 0x0, 0x1, 0x2)
	/usr/local/go/src/io/io.go:309 +0x86
io.ReadFull(0x7f0ec8e36a20, 0xc420301500, 0xc4201ea9d8, 0x9, 0x9, 0xc4209e0d80, 0xc420706ee0, 0xc420220d20)
	/usr/local/go/src/io/io.go:327 +0x58
net/http.http2readFrameHeader(0xc4201ea9d8, 0x9, 0x9, 0x7f0ec8e36a20, 0xc420301500, 0x0, 0xc400000000, 0x2, 0x2)
	/usr/local/go/src/net/http/h2_bundle.go:1517 +0x7b
net/http.(*http2Framer).ReadFrame(0xc4201ea9a0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/http/h2_bundle.go:1775 +0xa4
net/http.(*http2serverConn).readFrames(0xc4201dec40)
	/usr/local/go/src/net/http/h2_bundle.go:4392 +0xa9
created by net/http.(*http2serverConn).serve
	/usr/local/go/src/net/http/h2_bundle.go:4497 +0x31a

goroutine 133 [select]:
net/http.(*Transport).getConn(0x35c4f80, 0xc420d2b980, 0x0, 0xc42068a700, 0x5, 0xc4216560a0, 0x20, 0x0, 0x0, 0x4fff49)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc4206e6100, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc4206e6100, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc42000c108, 0x1c5ea60, 0xc420b112f8, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc4206e6100, 0x0, 0x0, 0x0, 0xc42000c108, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc4206e6100, 0xa, 0xc420aa8be0, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpPost(0xc42068a700, 0x33, 0x21e06c4, 0x15, 0x239c6a0, 0xc420194070, 0xc42090a000, 0x447, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:69 +0x227
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*jws).post(0xc420a76000, 0xc42068a700, 0x33, 0xc42016ef20, 0x52, 0xa7, 0x0, 0xc420b84680, 0x88)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/jws.go:33 +0x174
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.postJSON(0xc420a76000, 0xc42068a700, 0x33, 0x208e0c0, 0xc420823b00, 0x1bc85c0, 0xc420823a70, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:108 +0x141
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).createOrderForIdentifiers(0xc42063b680, 0xc420b78310, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:515 +0x28c
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420b78310, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:385 +0x185
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420aa0275, 0x27, 0x0, 0x0, 0x0, 0x0, 0xc4207fe900, 0xc4201ca500, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420b02480)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 107 [select, 1 minutes]:
net/http.(*persistConn).writeLoop(0xc420a0c6c0)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 148 [select, 1 minutes]:
net/http.(*http2serverConn).serve(0xc4201de000)
	/usr/local/go/src/net/http/h2_bundle.go:4505 +0x5b6
net/http.(*http2Server).ServeConn(0xc420223d80, 0x23d3d20, 0xc4202c8a80, 0xc420973d60)
	/usr/local/go/src/net/http/h2_bundle.go:4124 +0x74b
net/http.http2ConfigureServer.func1(0xc4200812b0, 0xc4202c8a80, 0x23a1fc0, 0xc420b79b00)
	/usr/local/go/src/net/http/h2_bundle.go:3962 +0x81
net/http.(*conn).serve(0xc4209b2a00, 0x23c3b80, 0xc4209cef60)
	/usr/local/go/src/net/http/server.go:1751 +0xe9e
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:2795 +0x27b

goroutine 136 [select]:
net/http.(*Transport).getConn(0x35c4f80, 0xc420392c30, 0x0, 0xc42068a700, 0x5, 0xc4205990e0, 0x20, 0x0, 0x0, 0x4fff49)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc421556600, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc421556600, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc4200b6990, 0x1c5ea60, 0xc420a9f2f8, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc421556600, 0x0, 0x0, 0x0, 0xc4200b6990, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc421556600, 0xa, 0xc4215bc050, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpPost(0xc42068a700, 0x33, 0x21e06c4, 0x15, 0x239c6a0, 0xc4201e22a0, 0xc4216c1680, 0x43b, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:69 +0x227
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*jws).post(0xc420a76000, 0xc42068a700, 0x33, 0xc420336d20, 0x49, 0x9e, 0x0, 0x100c420b86680, 0x88)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/jws.go:33 +0x174
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.postJSON(0xc420a76000, 0xc42068a700, 0x33, 0x208e0c0, 0xc420782000, 0x1bc85c0, 0xc420823ef0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:108 +0x141
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).createOrderForIdentifiers(0xc42063b680, 0xc420b784b0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:515 +0x28c
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420b784b0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:385 +0x185
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420aa07e5, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xc4207ff500, 0xc4201ca5c0, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420b025a0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 137 [select]:
net/http.(*Transport).getConn(0x35c4f80, 0xc420d2bb60, 0x0, 0xc42068a700, 0x5, 0xc4216560c0, 0x20, 0x0, 0x0, 0x4fff49)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc4206e6200, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc4206e6200, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc42000c128, 0x1c5ea60, 0xc420f4d2f8, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc4206e6200, 0x0, 0x0, 0x0, 0xc42000c128, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc4206e6200, 0xa, 0xc420aa8c30, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpPost(0xc42068a700, 0x33, 0x21e06c4, 0x15, 0x239c6a0, 0xc4201940e0, 0xc42090a900, 0x43b, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:69 +0x227
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*jws).post(0xc420a76000, 0xc42068a700, 0x33, 0xc420336c80, 0x49, 0x9e, 0x0, 0xc420b85680, 0x88)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/jws.go:33 +0x174
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.postJSON(0xc420a76000, 0xc42068a700, 0x33, 0x208e0c0, 0xc420823d40, 0x1bc85c0, 0xc420823cb0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:108 +0x141
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).createOrderForIdentifiers(0xc42063b680, 0xc420b783e0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:515 +0x28c
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420b783e0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:385 +0x185
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420aa09c5, 0x1e, 0x0, 0x0, 0x0, 0x0, 0xc4207ff680, 0xc4201ca580, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420b02600)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 996 [select]:
net/http.(*persistConn).writeLoop(0xc420816900)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 139 [select]:
net/http.(*Transport).getConn(0x35c4f80, 0xc420393020, 0x0, 0xc42068a700, 0x5, 0xc4205991a0, 0x20, 0x0, 0x0, 0x4fff49)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc421556800, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc421556800, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc4200b6ba0, 0x1c5ea60, 0xc420f492f8, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc421556800, 0x0, 0x0, 0x0, 0xc4200b6ba0, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc421556800, 0xa, 0xc4215bc0a0, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpPost(0xc42068a700, 0x33, 0x21e06c4, 0x15, 0x239c6a0, 0xc4201e2310, 0xc421622000, 0x43f, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:69 +0x227
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*jws).post(0xc420a76000, 0xc42068a700, 0x33, 0xc42016f080, 0x4c, 0xa1, 0x0, 0xc420b88680, 0x88)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/jws.go:33 +0x174
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.postJSON(0xc420a76000, 0xc42068a700, 0x33, 0x208e0c0, 0xc420823e60, 0x1bc85c0, 0xc420823dd0, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:108 +0x141
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).createOrderForIdentifiers(0xc42063b680, 0xc420aee410, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:515 +0x28c
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420aee410, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:385 +0x185
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420933d75, 0x21, 0x0, 0x0, 0x0, 0x0, 0xc4207ff980, 0xc420093f80, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420b026c0)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 140 [select]:
net/http.(*Transport).getConn(0x35c4f80, 0xc4203937d0, 0x0, 0xc42068a700, 0x5, 0xc420599240, 0x20, 0x0, 0x0, 0x4fff49)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc421556900, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc421556900, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc4200b6c70, 0x1c5ea60, 0xc420b0d2f8, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc421556900, 0x0, 0x0, 0x0, 0xc4200b6c70, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc421556900, 0xa, 0xc4215bc0f0, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpPost(0xc42068a700, 0x33, 0x21e06c4, 0x15, 0x239c6a0, 0xc4201e2380, 0xc420bcc480, 0x43f, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:69 +0x227
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*jws).post(0xc420a76000, 0xc42068a700, 0x33, 0xc42016efd0, 0x4c, 0xa1, 0x0, 0xc420707680, 0x88)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/jws.go:33 +0x174
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.postJSON(0xc420a76000, 0xc42068a700, 0x33, 0x208e0c0, 0xc420823c20, 0x1bc85c0, 0xc420823b90, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:108 +0x141
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).createOrderForIdentifiers(0xc42063b680, 0xc420aee2d0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:515 +0x28c
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).ObtainCertificate(0xc42063b680, 0xc420aee2d0, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, ...)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:385 +0x185
github.com/containous/traefik/provider/acme.(*Provider).resolveCertificate(0x35d55c0, 0xc420aa0005, 0x21, 0x0, 0x0, 0x0, 0x0, 0xc4207ffb00, 0xc420093e00, 0x0)
	/go/src/github.com/containous/traefik/provider/acme/provider.go:237 +0x28f
github.com/containous/traefik/provider/acme.(*Provider).watchNewDomains.func1.1()
	/go/src/github.com/containous/traefik/provider/acme/provider.go:193 +0x74
github.com/containous/traefik/safe.GoWithRecover.func1(0x2283610, 0xc420b02720)
	/go/src/github.com/containous/traefik/safe/routine.go:142 +0x4d
created by github.com/containous/traefik/safe.GoWithRecover
	/go/src/github.com/containous/traefik/safe/routine.go:136 +0x49

goroutine 245 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e307b0, 0x72, 0xc420c239a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420389318, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420389318, 0xc420b76000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420389300, 0xc420b76000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420389300, 0xc420b76000, 0x1000, 0x1000, 0x456360, 0xc42084ea80, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212110, 0xc420b76000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420758000, 0xc420b76000, 0x1000, 0x1000, 0xc420c23b98, 0x4033a5, 0xc42073d140)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc42097b1a0)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc42097b1a0, 0x1, 0x0, 0x0, 0x0, 0xc420594c60, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420758000)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 173 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30950, 0x72, 0xc4209f89a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42021f798, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42021f798, 0xc4201f6000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc42021f780, 0xc4201f6000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc42021f780, 0xc4201f6000, 0x1000, 0x1000, 0x456360, 0xc4209e1500, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42000c050, 0xc4201f6000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420764c60, 0xc4201f6000, 0x1000, 0x1000, 0xc4209f8b98, 0x4033a5, 0xc4202212c0)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420726f60)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420726f60, 0x1, 0x0, 0x0, 0x0, 0xc420594b40, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420764c60)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 174 [select]:
net/http.(*persistConn).writeLoop(0xc420764c60)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 165 [select]:
net/http.(*http2serverConn).serve(0xc4201dec40)
	/usr/local/go/src/net/http/h2_bundle.go:4505 +0x5b6
net/http.(*http2Server).ServeConn(0xc420223d80, 0x23d3d20, 0xc420301500, 0xc4206add60)
	/usr/local/go/src/net/http/h2_bundle.go:4124 +0x74b
net/http.http2ConfigureServer.func1(0xc4200812b0, 0xc420301500, 0x23a1fc0, 0xc420416030)
	/usr/local/go/src/net/http/h2_bundle.go:3962 +0x81
net/http.(*conn).serve(0xc4204c8a00, 0x23c3b80, 0xc420873980)
	/usr/local/go/src/net/http/server.go:1751 +0xe9e
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:2795 +0x27b

goroutine 1126 [select]:
net/http.(*persistConn).roundTrip(0xc420240480, 0xc4216ae060, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:2033 +0x5a7
net/http.(*Transport).RoundTrip(0xc42097c000, 0xc420b3c200, 0xc4206b2c01, 0xc42077a150, 0xc4206b2c80)
	/usr/local/go/src/net/http/transport.go:422 +0x8f2
github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward.ErrorHandlingRoundTripper.RoundTrip(0x239fe80, 0xc42097c000, 0x239d080, 0xc4208a00a0, 0xc420b3c200, 0xf, 0xc4200b4f40, 0xa)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward/fwd.go:150 +0x42
net/http/httputil.(*ReverseProxy).ServeHTTP(0xc4206b3038, 0x23b76c0, 0xc4200b6050, 0xc4206b3078)
	/usr/local/go/src/net/http/httputil/reverseproxy.go:193 +0x2b5
github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward.(*httpForwarder).serveHTTP(0xc420699200, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556500, 0xc4208a0970)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward/fwd.go:493 +0x357
github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward.(*Forwarder).ServeHTTP(0xc42036c4e0, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556500)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward/fwd.go:263 +0x120
github.com/containous/traefik/vendor/github.com/vulcand/oxy/roundrobin.(*RoundRobin).ServeHTTP(0xc420699260, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/roundrobin/rr.go:129 +0x139
github.com/containous/traefik/middlewares.(*EmptyBackendHandler).ServeHTTP(0xc42036c5a0, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400)
	/go/src/github.com/containous/traefik/middlewares/empty_backend_handler.go:29 +0x11b
github.com/containous/traefik/vendor/github.com/urfave/negroni.Wrap.func1(0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400, 0xc4214dd260)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:41 +0x4d
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0xc42036c680, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400, 0xc4214dd260)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x23a13e0, 0xc42036c680, 0xc42036c6e0, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
net/http.HandlerFunc.ServeHTTP(0xc4214dd200, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares/auth.createAuthBasicHandler.func1(0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400, 0xc4214dd200)
	/go/src/github.com/containous/traefik/middlewares/auth/authenticator.go:99 +0x19b
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0xc42036c620, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400, 0xc4214dd200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/middlewares/auth.(*Authenticator).ServeHTTP(0xc42036c5c0, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400, 0xc4214dd200)
	/go/src/github.com/containous/traefik/middlewares/auth/authenticator.go:138 +0x5b
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239cda0, 0xc42036c5c0, 0xc42036c6c0, 0x7f0ec8c2d200, 0xc4200b6048, 0xc421556400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(*Negroni).ServeHTTP(0xc420afc120, 0x23c2040, 0xc420f9e0c0, 0xc421556400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:81 +0xf2
github.com/containous/traefik/vendor/github.com/containous/mux.(*Router).ServeHTTP(0xc420698f60, 0x23c2040, 0xc420f9e0c0, 0xc421556400)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/mux.go:133 +0xed
github.com/containous/traefik/middlewares.(*HandlerSwitcher).ServeHTTP(0xc420212010, 0x23c2040, 0xc420f9e0c0, 0xc421556200)
	/go/src/github.com/containous/traefik/middlewares/handlerSwitcher.go:24 +0x6f
github.com/containous/traefik/vendor/github.com/urfave/negroni.Wrap.func1(0x23c2040, 0xc420f9e0c0, 0xc421556200, 0xc4214dd1e0)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:41 +0x4d
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0xc4206087a0, 0x23c2040, 0xc420f9e0c0, 0xc421556200, 0xc4214dd1e0)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x23a13e0, 0xc4206087a0, 0xc420608880, 0x23c2040, 0xc420f9e0c0, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x23c2040, 0xc420f9e0c0, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
net/http.HandlerFunc.ServeHTTP(0xc4214dd1c0, 0x23c2040, 0xc420f9e0c0, 0xc421556200)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler.GzipHandlerWithOpts.func1.1(0x7f0ec8c2d230, 0xc420ddd080, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler/gzip.go:286 +0x1ae
net/http.HandlerFunc.ServeHTTP(0xc4203925d0, 0x7f0ec8c2d230, 0xc420ddd080, 0xc421556200)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares.(*Compress).ServeHTTP(0x35f6a38, 0x7f0ec8c2d230, 0xc420ddd080, 0xc421556200, 0xc4214dd1c0)
	/go/src/github.com/containous/traefik/middlewares/compress.go:21 +0xe4
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239cb20, 0x35f6a38, 0xc420608860, 0x7f0ec8c2d230, 0xc420ddd080, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d230, 0xc420ddd080, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
github.com/containous/traefik/vendor/github.com/thoas/stats.(*Stats).ServeHTTP(0xc420978180, 0x7f0ec8c2d200, 0xc4200b6030, 0xc421556200, 0xc4214dd1a0)
	/go/src/github.com/containous/traefik/vendor/github.com/thoas/stats/stats.go:64 +0xc2
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239e920, 0xc420978180, 0xc420608820, 0x7f0ec8c2d200, 0xc4200b6030, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d200, 0xc4200b6030, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
net/http.HandlerFunc.ServeHTTP(0xc4214dd180, 0x7f0ec8c2d200, 0xc4200b6030, 0xc421556200)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares.NegroniRecoverHandler.func1(0x7f0ec8c2d200, 0xc4200b6030, 0xc421556200, 0xc4214dd180)
	/go/src/github.com/containous/traefik/middlewares/recover.go:23 +0x7d
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0x22832d0, 0x7f0ec8c2d200, 0xc4200b6030, 0xc421556200, 0xc4214dd180)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x23a13e0, 0x22832d0, 0xc420608800, 0x7f0ec8c2d200, 0xc4200b6030, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(*Negroni).ServeHTTP(0xc4205263f0, 0x23c1980, 0xc421598000, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:81 +0xf2
github.com/containous/traefik/vendor/github.com/containous/mux.(*Router).ServeHTTP(0xc420978540, 0x23c1980, 0xc421598000, 0xc421556200)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/mux.go:133 +0xed
net/http.serverHandler.ServeHTTP(0xc4200812b0, 0x23c1980, 0xc421598000, 0xc421556000)
	/usr/local/go/src/net/http/server.go:2694 +0xbc
net/http.(*conn).serve(0xc4204c8960, 0x23c3ac0, 0xc42094c040)
	/usr/local/go/src/net/http/server.go:1830 +0x651
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:2795 +0x27b

goroutine 1132 [select]:
net/http.(*persistConn).writeLoop(0xc420765320)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 246 [select]:
net/http.(*persistConn).writeLoop(0xc420758000)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 243 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30bc0, 0x72, 0xc420c219a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420602198, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420602198, 0xc420b54000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420602180, 0xc420b54000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420602180, 0xc420b54000, 0x1000, 0x1000, 0x456360, 0xc42084e900, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212090, 0xc420b54000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420762120, 0xc420b54000, 0x1000, 0x1000, 0xc420c21b98, 0x4033a5, 0xc42073d020)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc42097b0e0)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc42097b0e0, 0x1, 0x0, 0x0, 0x0, 0xc420594540, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420762120)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 244 [select]:
net/http.(*persistConn).writeLoop(0xc420762120)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 221 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e306e0, 0x72, 0xc4208cf9a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42002e198, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42002e198, 0xc420b50000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc42002e180, 0xc420b50000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc42002e180, 0xc420b50000, 0x1000, 0x1000, 0x456360, 0xc42156d680, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42081c0a8, 0xc420b50000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420758240, 0xc420b50000, 0x1000, 0x1000, 0xc4208cfb98, 0x4033a5, 0xc42073d1a0)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420698ea0)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420698ea0, 0x1, 0x0, 0x0, 0x0, 0xc420ce7560, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420758240)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1009 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30610, 0x72, 0xc420c269a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42033c518, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42033c518, 0xc42025f000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc42033c500, 0xc42025f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc42033c500, 0xc42025f000, 0x1000, 0x1000, 0x456360, 0xc42141d200, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42000c0c0, 0xc42025f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420afb680, 0xc42025f000, 0x1000, 0x1000, 0xc420c26b98, 0x4033a5, 0xc4200ad140)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420b1e240)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420b1e240, 0x1, 0x0, 0x0, 0x0, 0xc4214e85a0, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420afb680)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 222 [select]:
net/http.(*persistConn).writeLoop(0xc420758240)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 944 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30540, 0x72, 0xc4208cb9a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420620d98, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420620d98, 0xc42089d000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420620d80, 0xc42089d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420620d80, 0xc42089d000, 0x1000, 0x1000, 0x456360, 0xc42156c300, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42081c1a0, 0xc42089d000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc4208167e0, 0xc42089d000, 0x1000, 0x1000, 0xc4208cbb98, 0x4033a5, 0xc42073d740)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420362f60)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420362f60, 0x1, 0x0, 0x0, 0x0, 0xc420a473e0, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc4208167e0)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1811 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8c2f700, 0x72, 0xc420bad760)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc421443018, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc421443018, 0xc421555000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc421443000, 0xc421555000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc421443000, 0xc421555000, 0x1000, 0x1000, 0x29d, 0xc420f4e135, 0x3)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42081c400, 0xc421555000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
crypto/tls.(*block).readFromUntil(0xc42078d5c0, 0x7f0ec8bec850, 0xc42081c400, 0x5, 0xc42081c400, 0xc420c54120)
	/usr/local/go/src/crypto/tls/conn.go:493 +0x96
crypto/tls.(*Conn).readRecord(0xc4215fee00, 0x2288317, 0xc4215fef20, 0x456360)
	/usr/local/go/src/crypto/tls/conn.go:595 +0xe0
crypto/tls.(*Conn).Read(0xc4215fee00, 0xc420e2c000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1156 +0x100
net/http.(*persistConn).Read(0xc420816d80, 0xc420e2c000, 0x1000, 0x1000, 0xc420badb98, 0x4033a5, 0xc420dfe420)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420f9f020)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420f9f020, 0x1, 0x0, 0x0, 0x0, 0xc4216ffbc0, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420816d80)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 995 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30470, 0x72, 0xc4208cd9a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420621018, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420621018, 0xc420b33000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420621000, 0xc420b33000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420621000, 0xc420b33000, 0x1000, 0x1000, 0x456360, 0xc42084e600, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42081c1a8, 0xc420b33000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420816900, 0xc420b33000, 0x1000, 0x1000, 0xc4208cdb98, 0x4033a5, 0xc42073da40)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420363500)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420363500, 0x1, 0x0, 0x0, 0x0, 0xc420594660, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420816900)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1010 [select]:
net/http.(*persistConn).writeLoop(0xc420afb680)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 1128 [runnable]:
context.WithValue(0x23c3ac0, 0xc4216a62c0, 0x1c59e60, 0x238ee90, 0x1dc17a0, 0x0, 0xc4206088f0, 0xc4206afc48)
	/usr/local/go/src/context/context.go:474 +0x7a
github.com/containous/traefik/vendor/github.com/containous/mux.contextSet(0xc420d68d00, 0x1c59e60, 0x238ee90, 0x1dc17a0, 0x0, 0xc420212070)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/context_native.go:19 +0x78
github.com/containous/traefik/vendor/github.com/containous/mux.setVars(0xc420d68d00, 0x1dc17a0, 0x0, 0xc42042e301)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/mux.go:412 +0x57
github.com/containous/traefik/vendor/github.com/containous/mux.(*Router).ServeHTTP(0xc420978540, 0x23c1980, 0xc4214de000, 0xc420d68d00)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/mux.go:118 +0x224
net/http.serverHandler.ServeHTTP(0xc4200812b0, 0x23c1980, 0xc4214de000, 0xc420d68d00)
	/usr/local/go/src/net/http/server.go:2694 +0xbc
net/http.(*conn).serve(0xc4204c8b40, 0x23c3ac0, 0xc42042f340)
	/usr/local/go/src/net/http/server.go:1830 +0x651
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:2795 +0x27b

goroutine 1211 [select]:
net/http.(*persistConn).writeLoop(0xc420a0c000)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 985 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e303a0, 0x72, 0xc4208979a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420143798, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420143798, 0xc420a26000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420143780, 0xc420a26000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420143780, 0xc420a26000, 0x1000, 0x1000, 0x456360, 0xc4206f4c00, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc4200b6af8, 0xc420a26000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420347c20, 0xc420a26000, 0x1000, 0x1000, 0xc420897b98, 0x4033a5, 0xc4208c8c60)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420b03560)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420b03560, 0x1, 0x0, 0x0, 0x0, 0xc420594a20, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420347c20)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 986 [select]:
net/http.(*persistConn).writeLoop(0xc420347c20)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 1127 [select]:
net/http.(*persistConn).roundTrip(0xc420762b40, 0xc420dceae0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:2033 +0x5a7
net/http.(*Transport).RoundTrip(0xc42097c000, 0xc420d68b00, 0xc420b48c01, 0xc421616150, 0xc420b48c80)
	/usr/local/go/src/net/http/transport.go:422 +0x8f2
github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward.ErrorHandlingRoundTripper.RoundTrip(0x239fe80, 0xc42097c000, 0x239d080, 0xc4208a00a0, 0xc420d68b00, 0xf, 0xc42061ea30, 0xa)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward/fwd.go:150 +0x42
net/http/httputil.(*ReverseProxy).ServeHTTP(0xc420b49038, 0x23b76c0, 0xc420212088, 0xc420b49078)
	/usr/local/go/src/net/http/httputil/reverseproxy.go:193 +0x2b5
github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward.(*httpForwarder).serveHTTP(0xc420699200, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68a00, 0xc4208a0970)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward/fwd.go:493 +0x357
github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward.(*Forwarder).ServeHTTP(0xc42036c4e0, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68a00)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/forward/fwd.go:263 +0x120
github.com/containous/traefik/vendor/github.com/vulcand/oxy/roundrobin.(*RoundRobin).ServeHTTP(0xc420699260, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900)
	/go/src/github.com/containous/traefik/vendor/github.com/vulcand/oxy/roundrobin/rr.go:129 +0x139
github.com/containous/traefik/middlewares.(*EmptyBackendHandler).ServeHTTP(0xc42036c5a0, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900)
	/go/src/github.com/containous/traefik/middlewares/empty_backend_handler.go:29 +0x11b
github.com/containous/traefik/vendor/github.com/urfave/negroni.Wrap.func1(0x7f0ec8c2d200, 0xc420212080, 0xc420d68900, 0xc4202cd6c0)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:41 +0x4d
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0xc42036c680, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900, 0xc4202cd6c0)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x23a13e0, 0xc42036c680, 0xc42036c6e0, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d200, 0xc420212080, 0xc420d68900)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
net/http.HandlerFunc.ServeHTTP(0xc4202cd660, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares/auth.createAuthBasicHandler.func1(0x7f0ec8c2d200, 0xc420212080, 0xc420d68900, 0xc4202cd660)
	/go/src/github.com/containous/traefik/middlewares/auth/authenticator.go:99 +0x19b
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0xc42036c620, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900, 0xc4202cd660)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/middlewares/auth.(*Authenticator).ServeHTTP(0xc42036c5c0, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900, 0xc4202cd660)
	/go/src/github.com/containous/traefik/middlewares/auth/authenticator.go:138 +0x5b
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239cda0, 0xc42036c5c0, 0xc42036c6c0, 0x7f0ec8c2d200, 0xc420212080, 0xc420d68900)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(*Negroni).ServeHTTP(0xc420afc120, 0x23c2040, 0xc420fa0000, 0xc420d68900)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:81 +0xf2
github.com/containous/traefik/vendor/github.com/containous/mux.(*Router).ServeHTTP(0xc420698f60, 0x23c2040, 0xc420fa0000, 0xc420d68900)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/mux.go:133 +0xed
github.com/containous/traefik/middlewares.(*HandlerSwitcher).ServeHTTP(0xc420212010, 0x23c2040, 0xc420fa0000, 0xc4206e7500)
	/go/src/github.com/containous/traefik/middlewares/handlerSwitcher.go:24 +0x6f
github.com/containous/traefik/vendor/github.com/urfave/negroni.Wrap.func1(0x23c2040, 0xc420fa0000, 0xc4206e7500, 0xc4202cd640)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:41 +0x4d
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0xc4206087a0, 0x23c2040, 0xc420fa0000, 0xc4206e7500, 0xc4202cd640)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x23a13e0, 0xc4206087a0, 0xc420608880, 0x23c2040, 0xc420fa0000, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x23c2040, 0xc420fa0000, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
net/http.HandlerFunc.ServeHTTP(0xc4202cd5c0, 0x23c2040, 0xc420fa0000, 0xc4206e7500)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler.GzipHandlerWithOpts.func1.1(0x7f0ec8c2d230, 0xc4216a6000, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler/gzip.go:286 +0x1ae
net/http.HandlerFunc.ServeHTTP(0xc420dce930, 0x7f0ec8c2d230, 0xc4216a6000, 0xc4206e7500)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares.(*Compress).ServeHTTP(0x35f6a38, 0x7f0ec8c2d230, 0xc4216a6000, 0xc4206e7500, 0xc4202cd5c0)
	/go/src/github.com/containous/traefik/middlewares/compress.go:21 +0xe4
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239cb20, 0x35f6a38, 0xc420608860, 0x7f0ec8c2d230, 0xc4216a6000, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d230, 0xc4216a6000, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
github.com/containous/traefik/vendor/github.com/thoas/stats.(*Stats).ServeHTTP(0xc420978180, 0x7f0ec8c2d200, 0xc420212040, 0xc4206e7500, 0xc4202cd5a0)
	/go/src/github.com/containous/traefik/vendor/github.com/thoas/stats/stats.go:64 +0xc2
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239e920, 0xc420978180, 0xc420608820, 0x7f0ec8c2d200, 0xc420212040, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d200, 0xc420212040, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
net/http.HandlerFunc.ServeHTTP(0xc4202cd580, 0x7f0ec8c2d200, 0xc420212040, 0xc4206e7500)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares.NegroniRecoverHandler.func1(0x7f0ec8c2d200, 0xc420212040, 0xc4206e7500, 0xc4202cd580)
	/go/src/github.com/containous/traefik/middlewares/recover.go:23 +0x7d
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0x22832d0, 0x7f0ec8c2d200, 0xc420212040, 0xc4206e7500, 0xc4202cd580)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x23a13e0, 0x22832d0, 0xc420608800, 0x7f0ec8c2d200, 0xc420212040, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(*Negroni).ServeHTTP(0xc4205263f0, 0x23c1980, 0xc421599260, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:81 +0xf2
github.com/containous/traefik/vendor/github.com/containous/mux.(*Router).ServeHTTP(0xc420978540, 0x23c1980, 0xc421599260, 0xc4206e7500)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/mux.go:133 +0xed
net/http.serverHandler.ServeHTTP(0xc4200812b0, 0x23c1980, 0xc421599260, 0xc4206e7300)
	/usr/local/go/src/net/http/server.go:2694 +0xbc
net/http.(*conn).serve(0xc4204c8aa0, 0x23c3ac0, 0xc42042f280)
	/usr/local/go/src/net/http/server.go:1830 +0x651
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:2795 +0x27b

goroutine 1789 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8c2f560, 0x72, 0xc421683760)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc421443198, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc421443198, 0xc421646000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc421443180, 0xc421646000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc421443180, 0xc421646000, 0x1000, 0x1000, 0x29d, 0xc4216b3a75, 0x3)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42081c3e0, 0xc421646000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
crypto/tls.(*block).readFromUntil(0xc4209ce0f0, 0x7f0ec8bec850, 0xc42081c3e0, 0x5, 0xc42081c3e0, 0xc420c54120)
	/usr/local/go/src/crypto/tls/conn.go:493 +0x96
crypto/tls.(*Conn).readRecord(0xc4215fe000, 0x2288317, 0xc4215fe120, 0x456360)
	/usr/local/go/src/crypto/tls/conn.go:595 +0xe0
crypto/tls.(*Conn).Read(0xc4215fe000, 0xc420dfc000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1156 +0x100
net/http.(*persistConn).Read(0xc4208170e0, 0xc420dfc000, 0x1000, 0x1000, 0xc421683b98, 0x4033a5, 0xc420dfe1e0)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420f9ecc0)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420f9ecc0, 0x1, 0x0, 0x0, 0x0, 0xc4216fc8a0, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc4208170e0)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1204 [select]:
net/http.(*persistConn).writeLoop(0xc420762b40)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 1245 [runnable]:
internal/poll.runtime_pollWait(0x7f0ec8c2f7d0, 0x72, 0xc420bb39a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420fc6718, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420fc6718, 0xc420f79000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420fc6700, 0xc420f79000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420fc6700, 0xc420f79000, 0x1000, 0x1000, 0x456360, 0xc4206f5980, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc42000c1b8, 0xc420f79000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420240480, 0xc420f79000, 0x1000, 0x1000, 0xc420bb3b98, 0x4033a5, 0xc42140a360)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc4203637a0)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc4203637a0, 0x1, 0x0, 0x0, 0x0, 0xc420a793e0, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420240480)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1131 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30060, 0x72, 0xc4208989a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42044ba98, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42044ba98, 0xc420a3e000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc42044ba80, 0xc420a3e000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc42044ba80, 0xc420a3e000, 0x1000, 0x1000, 0xc42084f0a8, 0xc42094c580, 0x1)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212078, 0xc420a3e000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420765320, 0xc420a3e000, 0x1000, 0x1000, 0x2a, 0xc420898b98, 0x4299f9)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420ab6960)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420ab6960, 0x1, 0xc420220f60, 0xc420740480, 0xc420b03980, 0x60, 0x60)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420765320)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1210 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8c2f8a0, 0x72, 0xc420bb29a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420590e18, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420590e18, 0xc420767000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420590e00, 0xc420767000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420590e00, 0xc420767000, 0x1000, 0x1000, 0x456360, 0xc4206f5980, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212120, 0xc420767000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420a0c000, 0xc420767000, 0x1000, 0x1000, 0xc420bb2b98, 0x4033a5, 0xc420a67f20)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420727080)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420727080, 0x1, 0x0, 0x0, 0x0, 0xc420ce7440, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420a0c000)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1777 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc420f9e4e0, 0xc4206e5020, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc420f9e4e0, 0x21c2457, 0x3, 0xc4206e5020, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc420f9e4e0, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc4206e5020, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4206e5020, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc4206e5020, 0x20, 0x60, 0x110, 0x110, 0xc420240d80)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc4206e5020, 0x20, 0xc420060190, 0xc42005ef00, 0xc420709ae8, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4206e5020, 0x20, 0xc420740b60, 0x44550b, 0x5aeb7b, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc4206e5020, 0x20, 0x1, 0x0, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc42055eae0, 0xc420a79560)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1203 [runnable]:
internal/poll.runtime_pollWait(0x7f0ec8c2f970, 0x72, 0xc420bae9a8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc420621b98, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc420621b98, 0xc42058f000, 0x1000, 0x1000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc420621b80, 0xc42058f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc420621b80, 0xc42058f000, 0x1000, 0x1000, 0x456360, 0xc42084e180, 0x4)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212038, 0xc42058f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net/http.(*persistConn).Read(0xc420762b40, 0xc42058f000, 0x1000, 0x1000, 0xc420baeb98, 0x4033a5, 0xc420a020c0)
	/usr/local/go/src/net/http/transport.go:1453 +0x136
bufio.(*Reader).fill(0xc420726900)
	/usr/local/go/src/bufio/bufio.go:100 +0x11e
bufio.(*Reader).Peek(0xc420726900, 0x1, 0x0, 0x0, 0x0, 0xc420a79680, 0x0)
	/usr/local/go/src/bufio/bufio.go:132 +0x3a
net/http.(*persistConn).readLoop(0xc420762b40)
	/usr/local/go/src/net/http/transport.go:1601 +0x185
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1237 +0x95a

goroutine 1246 [select]:
net/http.(*persistConn).writeLoop(0xc420240480)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 1821 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc421540540, 0xc420599240, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc421540540, 0x21c2457, 0x3, 0xc420599240, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc421540540, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc420599240, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc420599240, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc420599240, 0x20, 0x60, 0x110, 0x110, 0xc42071e6c0)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc420599240, 0x20, 0xc4215404e0, 0xc420b88ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc420599240, 0x20, 0xc420991360, 0x42cbf9, 0x427eca, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc420599240, 0x20, 0x1, 0x0, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420393800, 0xc4216fc720)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1833 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc420e31380, 0xc4216560c0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc420e31380, 0x21c2457, 0x3, 0xc4216560c0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc420e31380, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc4216560c0, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4216560c0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc4216560c0, 0x20, 0x60, 0x110, 0x110, 0xc420816480)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc4216560c0, 0x20, 0xc420e31320, 0xc420bb1ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4216560c0, 0x20, 0xc420038000, 0x511ce4, 0x5ff210, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc4216560c0, 0x20, 0x1, 0x0, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420d2bb90, 0xc4215f44e0)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1831 [runnable]:
crypto/aes.(*gcmAsm).Seal(0xc4207645a0, 0xc42091400d, 0x0, 0x3ff3, 0xc4203f60a0, 0xc, 0xc, 0xc42091400d, 0x62, 0x3ff3, ...)
	/usr/local/go/src/crypto/aes/aes_gcm.go:98 +0x4a4
crypto/tls.(*fixedNonceAEAD).Seal(0xc4203f60a0, 0xc42091400d, 0x0, 0x3ff3, 0xc420914005, 0x8, 0x3ffb, 0xc42091400d, 0x62, 0x3ff3, ...)
	/usr/local/go/src/crypto/tls/cipher_suites.go:175 +0x110
crypto/tls.(*halfConn).encrypt(0xc4203016d0, 0xc4200af290, 0x8, 0x4000)
	/usr/local/go/src/crypto/tls/conn.go:425 +0x55b
crypto/tls.(*Conn).writeRecordLocked(0xc420301500, 0x2288317, 0xc420ca5000, 0x62, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:930 +0x322
crypto/tls.(*Conn).Write(0xc420301500, 0xc420ca5000, 0x62, 0x1000, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1090 +0x188
bufio.(*Writer).Flush(0xc420da2bc0, 0x0, 0x0)
	/usr/local/go/src/bufio/bufio.go:573 +0x7e
net/http.(*http2bufferedWriter).Flush(0xc4203f60c0, 0xc4207456f8, 0xc420d2b350)
	/usr/local/go/src/net/http/h2_bundle.go:3493 +0x4a
net/http.(*http2serverConn).Flush(0xc4201dec40, 0xc420994730, 0xc420745740)
	/usr/local/go/src/net/http/h2_bundle.go:4247 +0x2f
net/http.http2flushFrameWriter.writeFrame(0x23c4bc0, 0xc4201dec40, 0x6c1a38, 0x35c4f80)
	/usr/local/go/src/net/http/h2_bundle.go:8906 +0x31
net/http.(*http2serverConn).writeFrameAsync(0xc4201dec40, 0x23aecc0, 0x35f6a38, 0x0, 0x0)
	/usr/local/go/src/net/http/h2_bundle.go:4420 +0x4b
created by net/http.(*http2serverConn).startFrameWrite
	/usr/local/go/src/net/http/h2_bundle.go:4800 +0x27d

goroutine 1820 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc420f9fec0, 0xc4205991a0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc420f9fec0, 0x21c2457, 0x3, 0xc4205991a0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc420f9fec0, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc4205991a0, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4205991a0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc4205991a0, 0x20, 0x60, 0x110, 0x110, 0xc42071e480)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc4205991a0, 0x20, 0xc420f9fe60, 0xc420b88ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4205991a0, 0x20, 0xc42098db60, 0x44550b, 0x5aeb7b, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc4205991a0, 0x20, 0x0, 0xc420ce7500, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420393050, 0xc4216fc5a0)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1802 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e30130, 0x72, 0xc42098c410)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42002e598, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42002e598, 0xc420b40000, 0x2000, 0x2000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc42002e580, 0xc420b40000, 0x2000, 0x2000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc42002e580, 0xc420b40000, 0x2000, 0x2000, 0x4046d7, 0xc4206f5980, 0x3)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212048, 0xc420b40000, 0x2000, 0x2000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
crypto/tls.(*block).readFromUntil(0xc4209ce5a0, 0x7f0ec8bec850, 0xc420212048, 0x5, 0xc420212048, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:493 +0x96
crypto/tls.(*Conn).readRecord(0xc42023ea80, 0x2288317, 0xc42023eba0, 0xc420fa0c60)
	/usr/local/go/src/crypto/tls/conn.go:595 +0xe0
crypto/tls.(*Conn).Read(0xc42023ea80, 0xc4209ce341, 0x1, 0x1, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1156 +0x100
net/http.(*connReader).backgroundRead(0xc4209ce330)
	/usr/local/go/src/net/http/server.go:668 +0x5a
created by net/http.(*connReader).startBackgroundRead
	/usr/local/go/src/net/http/server.go:664 +0xce

goroutine 1832 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc420e31020, 0xc4216560a0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc420e31020, 0x21c2457, 0x3, 0xc4216560a0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc420e31020, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc4216560a0, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4216560a0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc4216560a0, 0x20, 0x60, 0x110, 0x110, 0xc420816360)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc4216560a0, 0x20, 0xc420e30fc0, 0xc420bb1ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4216560a0, 0x20, 0xc420038000, 0x511ce4, 0x5ff210, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc4216560a0, 0x20, 0x1, 0x0, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420d2b9b0, 0xc4215f4360)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1822 [chan receive]:
net/http.(*Transport).getConn.func2.1(0xc420c540c0, 0x35c4f80, 0x2287d18)
	/usr/local/go/src/net/http/transport.go:946 +0x46
created by net/http.(*Transport).getConn.func2
	/usr/local/go/src/net/http/transport.go:945 +0x7a

goroutine 1824 [runnable]:
net.uitoa(0xa, 0x10, 0x10)
	/usr/local/go/src/net/parse.go:204 +0xcb
net.IP.String(0xc42081214c, 0x10, 0x10, 0xc42070cb60, 0xc4204d8000)
	/usr/local/go/src/net/ip.go:278 +0x3d4
net.ipEmptyString(0xc42081214c, 0x10, 0x10, 0x43c032, 0xc42098df48)
	/usr/local/go/src/net/ip.go:340 +0x56
net.(*TCPAddr).String(0xc420dcecc0, 0x23ac540, 0xc420dcecc0)
	/usr/local/go/src/net/tcpsock.go:32 +0x4d
net/http.(*conn).serve(0xc420be2460, 0x23c3b80, 0xc42002d020)
	/usr/local/go/src/net/http/server.go:1720 +0x60
created by net/http.(*Server).Serve
	/usr/local/go/src/net/http/server.go:2795 +0x27b

goroutine 1792 [chan receive]:
net/http.(*Transport).getConn.func2.1(0xc420a79560, 0x35c4f80, 0x2287d18)
	/usr/local/go/src/net/http/transport.go:946 +0x46
created by net/http.(*Transport).getConn.func2
	/usr/local/go/src/net/http/transport.go:945 +0x7a

goroutine 1829 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc420e30540, 0xc4206ef260, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc420e30540, 0x21c2457, 0x3, 0xc4206ef260, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc420e30540, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc4206ef260, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4206ef260, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc4206ef260, 0x20, 0x1000000000060, 0x110, 0x110, 0xc420816120)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc4206ef260, 0x20, 0xc420e304e0, 0xc420bb1ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4206ef260, 0x20, 0x7679f9, 0x158, 0x159, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc4214593e0, 0x5, 0xc4206ef260, 0x20, 0x1, 0x0, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420629bf0, 0xc4215f40c0)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1830 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc420e30720, 0xc421656000, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc420e30720, 0x21c2457, 0x3, 0xc421656000, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc420e30720, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc421656000, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc421656000, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc421656000, 0x20, 0x60, 0x110, 0x110, 0xc420816240)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc421656000, 0x20, 0xc420e306c0, 0xc420bb1ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc421656000, 0x20, 0x7679f9, 0x158, 0x159, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc420dfe540, 0x5, 0xc421656000, 0x20, 0x1, 0x0, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420d2b4d0, 0xc4215f41e0)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1763 [chan receive]:
net.(*Resolver).goLookupIPCNAMEOrder(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc4206e5020, 0x1c, 0x2, 0xc4209ce900, 0x0, 0x0, 0x2, ...)
	/usr/local/go/src/net/dnsclient_unix.go:491 +0x387
net.(*Resolver).lookupIP(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc4206e5020, 0x1c, 0x48, 0xc42141d980, 0xc420093a40, 0x44949d, 0xc420142380)
	/usr/local/go/src/net/lookup_unix.go:101 +0xab
net.(*Resolver).(net.lookupIP)-fm(0x23c3ac0, 0xc4204e1780, 0xc4206e5020, 0x1c, 0x4299f9, 0x8, 0xc420093a40, 0xc42098deb8, 0xc42098dea0)
	/usr/local/go/src/net/lookup.go:192 +0x56
net.glob..func10(0x23c3ac0, 0xc4204e1780, 0xc420b79b70, 0xc4206e5020, 0x1c, 0x44929b, 0xc420a280a8, 0x1, 0xc42098def8, 0x489d41)
	/usr/local/go/src/net/hook.go:19 +0x52
net.(*Resolver).LookupIPAddr.func1(0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:206 +0xd8
internal/singleflight.(*Group).doCall(0x35d2eb0, 0xc42097f9f0, 0xc4206e5020, 0x1c, 0xc4209cf890)
	/usr/local/go/src/internal/singleflight/singleflight.go:95 +0x2e
created by internal/singleflight.(*Group).DoChan
	/usr/local/go/src/internal/singleflight/singleflight.go:88 +0x2d0

goroutine 1794 [runnable]:
net/http.(*Transport).getConn(0x35c4f80, 0xc420d2b4a0, 0x0, 0xc420dfe540, 0x5, 0xc421656000, 0x20, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:962 +0x558
net/http.(*Transport).RoundTrip(0x35c4f80, 0xc4206e6000, 0x35c4f80, 0x0, 0x0)
	/usr/local/go/src/net/http/transport.go:409 +0x632
net/http.send(0xc4206e6000, 0x239fe80, 0x35c4f80, 0x0, 0x0, 0x0, 0xc42000c060, 0x4102b9, 0xc420704c18, 0x1)
	/usr/local/go/src/net/http/client.go:252 +0x185
net/http.(*Client).send(0x35bdea0, 0xc4206e6000, 0x0, 0x0, 0x0, 0xc42000c060, 0x0, 0x1, 0x10)
	/usr/local/go/src/net/http/client.go:176 +0xfa
net/http.(*Client).Do(0x35bdea0, 0xc4206e6000, 0xa, 0xc420aa8b90, 0x47)
	/usr/local/go/src/net/http/client.go:615 +0x28d
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.httpGet(0xc420dfe540, 0x5b, 0xc420fa1920, 0x0, 0xc420094400)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:81 +0x1d9
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.getJSON(0xc420dfe540, 0x5b, 0x1bc8400, 0xc420fa1920, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:87 +0x64
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).getAuthzForOrder.func1(0xc420dfe600, 0xc420dfe5a0, 0xc420dfe540, 0x5b)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:584 +0x78
created by github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).getAuthzForOrder
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:582 +0x11d

goroutine 1819 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc420f9f920, 0xc4205990e0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc420f9f920, 0x21c2457, 0x3, 0xc4205990e0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc420f9f920, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc4205990e0, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4205990e0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc4205990e0, 0x20, 0x1000000000060, 0x110, 0x110, 0xc42071e240)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc4205990e0, 0x20, 0xc420f9f8c0, 0xc420b88ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc4205990e0, 0x20, 0xc42098db60, 0x44550b, 0x5aeb7b, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc4205990e0, 0x20, 0x0, 0xc420ce7500, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420392c60, 0xc4216fc420)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1834 [IO wait]:
internal/poll.runtime_pollWait(0x7f0ec8e302d0, 0x72, 0xc420745410)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc42002e818, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc42002e818, 0xc42140e000, 0x2000, 0x2000)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc42002e800, 0xc42140e000, 0x2000, 0x2000, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc42002e800, 0xc42140e000, 0x2000, 0x2000, 0x40ebb3, 0xc4203f60a0, 0xc4203f60a0)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212058, 0xc42140e000, 0x2000, 0x2000, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
crypto/tls.(*block).readFromUntil(0xc42002d6b0, 0x7f0ec8bec850, 0xc420212058, 0x5, 0xc420212058, 0xc4203016d0)
	/usr/local/go/src/crypto/tls/conn.go:493 +0x96
crypto/tls.(*Conn).readRecord(0xc42023ee00, 0x2288317, 0xc42023ef20, 0x35c4f80)
	/usr/local/go/src/crypto/tls/conn.go:595 +0xe0
crypto/tls.(*Conn).Read(0xc42023ee00, 0xc420503b11, 0x1, 0x1, 0x0, 0x0, 0x0)
	/usr/local/go/src/crypto/tls/conn.go:1156 +0x100
net/http.(*connReader).backgroundRead(0xc420503b00)
	/usr/local/go/src/net/http/server.go:668 +0x5a
created by net/http.(*connReader).startBackgroundRead
	/usr/local/go/src/net/http/server.go:664 +0xce

goroutine 1799 [chan receive]:
net/http.(*Transport).getConn.func2.1(0xc4215f40c0, 0x35c4f80, 0x2287d18)
	/usr/local/go/src/net/http/transport.go:946 +0x46
created by net/http.(*Transport).getConn.func2
	/usr/local/go/src/net/http/transport.go:945 +0x7a

goroutine 1823 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc421540840, 0xc420599280, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc421540840, 0x21c2457, 0x3, 0xc420599280, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc421540840, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc420599280, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc420599280, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc420599280, 0x20, 0x60, 0x110, 0x110, 0xc42071eb40)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc420599280, 0x20, 0xc4215407e0, 0xc420b88ae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc420599280, 0x20, 0xc42098db60, 0x44550b, 0x5aeb7b, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc420599280, 0x20, 0x0, 0xc420ce7500, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420393bc0, 0xc4216fc960)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1801 [runnable]:
context.WithDeadline(0x23c3ac0, 0xc4204e1780, 0xbec8f1b6d7b5738a, 0x16e20017e0, 0x35d52c0, 0x0, 0x0, 0x0)
	/usr/local/go/src/context/context.go:390 +0x118
net.(*Resolver).exchange(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc420a5ce60, 0xf, 0xc420d6b290, 0x2b, 0x1c, 0x12a05f200, 0x0, ...)
	/usr/local/go/src/net/dnsclient_unix.go:126 +0x20a
net.(*Resolver).tryOneName(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc42081b900, 0xc420d6b290, 0x2b, 0x1c, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dnsclient_unix.go:161 +0x148
net.(*Resolver).goLookupIPCNAMEOrder.func1(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc42081b900, 0xc4209554d0, 0xc42142bda0, 0x49001c)
	/usr/local/go/src/net/dnsclient_unix.go:485 +0xb9
created by net.(*Resolver).goLookupIPCNAMEOrder
	/usr/local/go/src/net/dnsclient_unix.go:483 +0x242

goroutine 1790 [select]:
net/http.(*persistConn).writeLoop(0xc4208170e0)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 1800 [runnable]:
internal/poll.runtime_pollWait(0x7f0ec8e412b0, 0x72, 0xc421686af8)
	/usr/local/go/src/runtime/netpoll.go:173 +0x57
internal/poll.(*pollDesc).wait(0xc421447118, 0x72, 0xffffffffffffff00, 0x23a2220, 0x32ee568)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:85 +0x9b
internal/poll.(*pollDesc).waitRead(0xc421447118, 0xc420884a00, 0x200, 0x200)
	/usr/local/go/src/internal/poll/fd_poll_runtime.go:90 +0x3d
internal/poll.(*FD).Read(0xc421447100, 0xc420884a00, 0x200, 0x200, 0x0, 0x0, 0x0)
	/usr/local/go/src/internal/poll/fd_unix.go:157 +0x17d
net.(*netFD).Read(0xc421447100, 0xc420884a00, 0x200, 0x200, 0xc421686c08, 0x441a77, 0x200)
	/usr/local/go/src/net/fd_unix.go:202 +0x4f
net.(*conn).Read(0xc420212128, 0xc420884a00, 0x200, 0x200, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/net.go:176 +0x6a
net.(*dnsPacketConn).dnsRoundTrip(0xc4205a0340, 0xc421447000, 0x35d52c0, 0x35d52c0, 0x0)
	/usr/local/go/src/net/dnsclient_unix.go:57 +0xdb
net.(*Resolver).exchange(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc420a5ce60, 0xf, 0xc420d6b290, 0x2b, 0x1, 0x12a05f200, 0x0, ...)
	/usr/local/go/src/net/dnsclient_unix.go:138 +0x44b
net.(*Resolver).tryOneName(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc42081b900, 0xc420d6b290, 0x2b, 0x1, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dnsclient_unix.go:161 +0x148
net.(*Resolver).goLookupIPCNAMEOrder.func1(0x35d2ec0, 0x23c3ac0, 0xc4204e1780, 0xc42081b900, 0xc4209554d0, 0xc42142bda0, 0x490001)
	/usr/local/go/src/net/dnsclient_unix.go:485 +0xb9
created by net.(*Resolver).goLookupIPCNAMEOrder
	/usr/local/go/src/net/dnsclient_unix.go:483 +0x242

goroutine 1796 [select]:
net/http/httputil.(*ReverseProxy).ServeHTTP.func1(0xc420f971f0, 0xc420417c70, 0x23c3ac0, 0xc4216a6080)
	/usr/local/go/src/net/http/httputil/reverseproxy.go:154 +0xde
created by net/http/httputil.(*ReverseProxy).ServeHTTP
	/usr/local/go/src/net/http/httputil/reverseproxy.go:153 +0xd39

goroutine 1748 [runnable]:
reflect.(*rtype).nameOff(0x2198a60, 0xdbe5, 0x1a89488)
	/usr/local/go/src/reflect/type.go:685 +0x4c
reflect.(*rtype).exportedMethods(0x2198a60, 0x4b754a, 0x217ffe0, 0x16)
	/usr/local/go/src/reflect/type.go:801 +0x102
reflect.(*rtype).NumMethod(0x2198a60, 0xc421610310)
	/usr/local/go/src/reflect/type.go:833 +0x54
encoding/json.(*decodeState).indirect(0xc4208de7a8, 0x217ffe0, 0xc421610310, 0x199, 0x0, 0x7, 0x1, 0x0, 0x0, 0x1c5ea60, ...)
	/usr/local/go/src/encoding/json/decode.go:489 +0x148
encoding/json.(*decodeState).literalStore(0xc4208de7a8, 0xc42151c67e, 0x16, 0x582, 0x217ffe0, 0xc421610310, 0x199, 0x1ac4c00)
	/usr/local/go/src/encoding/json/decode.go:873 +0x1df
encoding/json.(*decodeState).literal(0xc4208de7a8, 0x217ffe0, 0xc421610310, 0x199)
	/usr/local/go/src/encoding/json/decode.go:842 +0xd5
encoding/json.(*decodeState).value(0xc4208de7a8, 0x217ffe0, 0xc421610310, 0x199)
	/usr/local/go/src/encoding/json/decode.go:411 +0x30d
encoding/json.(*decodeState).object(0xc4208de7a8, 0x1bc8400, 0xc421610300, 0x16)
	/usr/local/go/src/encoding/json/decode.go:776 +0x132d
encoding/json.(*decodeState).value(0xc4208de7a8, 0x1bc8400, 0xc421610300, 0x16)
	/usr/local/go/src/encoding/json/decode.go:408 +0x2d3
encoding/json.(*decodeState).unmarshal(0xc4208de7a8, 0x1bc8400, 0xc421610300, 0x0, 0x0)
	/usr/local/go/src/encoding/json/decode.go:189 +0x1e7
encoding/json.(*Decoder).Decode(0xc4208de780, 0x1bc8400, 0xc421610300, 0x239fec0, 0xc420ddd3c0)
	/usr/local/go/src/encoding/json/stream.go:73 +0x1a7
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.getJSON(0xc420dfe660, 0x5b, 0x1bc8400, 0xc421610300, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:97 +0x24f
github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).getAuthzForOrder.func1(0xc420dfe720, 0xc420dfe6c0, 0xc420dfe660, 0x5b)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:584 +0x78
created by github.com/containous/traefik/vendor/github.com/xenolf/lego/acme.(*Client).getAuthzForOrder
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/client.go:582 +0x11d

goroutine 1764 [select]:
net/http.(*http2serverConn).writeDataFromHandler(0xc4201dec40, 0xc42083f290, 0xc4208eb300, 0x1244, 0x1300, 0x200, 0x2a0, 0xc421617600)
	/usr/local/go/src/net/http/h2_bundle.go:4651 +0x27a
net/http.(*http2responseWriterState).writeChunk(0xc420cf8380, 0xc4208eb300, 0x1244, 0x1300, 0x0, 0x6000000000000010, 0xc421617590)
	/usr/local/go/src/net/http/h2_bundle.go:6065 +0x3fc
net/http.http2chunkWriter.Write(0xc420cf8380, 0xc4208eb300, 0x1244, 0x1300, 0xc420f1d818, 0x68476d, 0xc420f1d7b8)
	/usr/local/go/src/net/http/h2_bundle.go:5973 +0x49
bufio.(*Writer).Write(0xc42042fe00, 0xc4208eb300, 0x1244, 0x1300, 0x1, 0x6, 0xc4205a01f0)
	/usr/local/go/src/bufio/bufio.go:605 +0x14d
net/http.(*http2responseWriter).write(0xc4200b71a0, 0x1244, 0xc4208eb300, 0x1244, 0x1300, 0x0, 0x0, 0x0, 0x0, 0x6010100)
	/usr/local/go/src/net/http/h2_bundle.go:6270 +0xe6
net/http.(*http2responseWriter).Write(0xc4200b71a0, 0xc4208eb300, 0x1244, 0x1300, 0xc420f1d858, 0x6845bd, 0xc420cf8380)
	/usr/local/go/src/net/http/h2_bundle.go:6244 +0x56
github.com/containous/traefik/vendor/github.com/urfave/negroni.(*responseWriter).Write(0xc420da2840, 0xc4208eb300, 0x1244, 0x1300, 0x0, 0x0, 0x0)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/response_writer.go:61 +0x5e
github.com/containous/traefik/vendor/github.com/thoas/stats.(*recorderResponseWriter).Write(0xc420da2880, 0xc4208eb300, 0x1244, 0x1300, 0xc420f1d918, 0x42a2f4, 0x2283ba0)
	/go/src/github.com/containous/traefik/vendor/github.com/thoas/stats/recorder.go:58 +0x5e
github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler.(*GzipResponseWriter).Close(0xc420fa18c0, 0x21d3212, 0xf)
	/go/src/github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler/gzip.go:184 +0x8d
github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler.GzipHandlerWithOpts.func1.1(0x7f0ec8c2d230, 0xc420da2880, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/NYTimes/gziphandler/gzip.go:294 +0x1af
net/http.HandlerFunc.ServeHTTP(0xc420629860, 0x7f0ec8c2d230, 0xc420da2880, 0xc420d68400)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares.(*Compress).ServeHTTP(0x35f6a38, 0x7f0ec8c2d230, 0xc420da2880, 0xc420d68400, 0xc4214d0a60)
	/go/src/github.com/containous/traefik/middlewares/compress.go:21 +0xe4
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239cb20, 0x35f6a38, 0xc420608860, 0x7f0ec8c2d230, 0xc420da2880, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d230, 0xc420da2880, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
github.com/containous/traefik/vendor/github.com/thoas/stats.(*Stats).ServeHTTP(0xc420978180, 0x7f0ec8c2d200, 0xc42081c490, 0xc420d68400, 0xc4214d0a40)
	/go/src/github.com/containous/traefik/vendor/github.com/thoas/stats/stats.go:64 +0xc2
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x239e920, 0xc420978180, 0xc420608820, 0x7f0ec8c2d200, 0xc42081c490, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(middleware).ServeHTTP-fm(0x7f0ec8c2d200, 0xc42081c490, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0x60
net/http.HandlerFunc.ServeHTTP(0xc4214d0a20, 0x7f0ec8c2d200, 0xc42081c490, 0xc420d68400)
	/usr/local/go/src/net/http/server.go:1947 +0x44
github.com/containous/traefik/middlewares.NegroniRecoverHandler.func1(0x7f0ec8c2d200, 0xc42081c490, 0xc420d68400, 0xc4214d0a20)
	/go/src/github.com/containous/traefik/middlewares/recover.go:23 +0x7d
github.com/containous/traefik/vendor/github.com/urfave/negroni.HandlerFunc.ServeHTTP(0x22832d0, 0x7f0ec8c2d200, 0xc42081c490, 0xc420d68400, 0xc4214d0a20)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:24 +0x4e
github.com/containous/traefik/vendor/github.com/urfave/negroni.middleware.ServeHTTP(0x23a13e0, 0x22832d0, 0xc420608800, 0x7f0ec8c2d200, 0xc42081c490, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:33 +0xa5
github.com/containous/traefik/vendor/github.com/urfave/negroni.(*Negroni).ServeHTTP(0xc4205263f0, 0x23c1900, 0xc4200b71a0, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/urfave/negroni/negroni.go:81 +0xf2
github.com/containous/traefik/vendor/github.com/containous/mux.(*Router).ServeHTTP(0xc420978540, 0x23c1900, 0xc4200b71a0, 0xc420d68400)
	/go/src/github.com/containous/traefik/vendor/github.com/containous/mux/mux.go:133 +0xed
net/http.serverHandler.ServeHTTP(0xc4200812b0, 0x23c1900, 0xc4200b71a0, 0xc420b3d200)
	/usr/local/go/src/net/http/server.go:2694 +0xbc
net/http.initNPNRequest.ServeHTTP(0xc420301500, 0xc4200812b0, 0x23c1900, 0xc4200b71a0, 0xc420b3d200)
	/usr/local/go/src/net/http/server.go:3260 +0x9a
net/http.(Handler).ServeHTTP-fm(0x23c1900, 0xc4200b71a0, 0xc420b3d200)
	/usr/local/go/src/net/http/h2_bundle.go:5475 +0x4d
net/http.(*http2serverConn).runHandler(0xc4201dec40, 0xc4200b71a0, 0xc420b3d200, 0xc4214dc720)
	/usr/local/go/src/net/http/h2_bundle.go:5760 +0x89
created by net/http.(*http2serverConn).processHeaders
	/usr/local/go/src/net/http/h2_bundle.go:5494 +0x46b

goroutine 1812 [select]:
net/http.(*persistConn).writeLoop(0xc420816d80)
	/usr/local/go/src/net/http/transport.go:1822 +0x14b
created by net/http.(*Transport).dialConn
	/usr/local/go/src/net/http/transport.go:1238 +0x97f

goroutine 1749 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc421610600, 0xc42036a0a0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc421610600, 0x21c2457, 0x3, 0xc42036a0a0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc421610600, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc42036a0a0, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc42036a0a0, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc42036a0a0, 0x20, 0x1000000000060, 0x110, 0x110, 0xc420b5aa20)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc42036a0a0, 0x20, 0xc4216105a0, 0xc42070aae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc42036a0a0, 0x20, 0xc420038000, 0x44550b, 0x5aeb7b, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc420dfe660, 0x5, 0xc42036a0a0, 0x20, 0x23aecc0, 0x35f6a38, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc420629ec0, 0xc420c540c0)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363

goroutine 1750 [select]:
net/http/httputil.(*ReverseProxy).ServeHTTP.func1(0xc42061c150, 0xc420955ee0, 0x23c3ac0, 0xc420ddd100)
	/usr/local/go/src/net/http/httputil/reverseproxy.go:154 +0xde
created by net/http/httputil.(*ReverseProxy).ServeHTTP
	/usr/local/go/src/net/http/httputil/reverseproxy.go:153 +0xd39

goroutine 1751 [select]:
net.(*Resolver).LookupIPAddr(0x35d2ec0, 0x23c3b40, 0xc421611380, 0xc42036a120, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0)
	/usr/local/go/src/net/lookup.go:212 +0x50d
net.(*Resolver).internetAddrList(0x35d2ec0, 0x23c3b40, 0xc421611380, 0x21c2457, 0x3, 0xc42036a120, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/ipsock.go:293 +0x5c4
net.(*Resolver).resolveAddrList(0x35d2ec0, 0x23c3b40, 0xc421611380, 0x21c2ca3, 0x4, 0x21c2457, 0x3, 0xc42036a120, 0x20, 0x0, ...)
	/usr/local/go/src/net/dial.go:193 +0x50c
net.(*Dialer).DialContext(0xc4201c2300, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc42036a120, 0x20, 0x0, 0x0, 0x0, ...)
	/usr/local/go/src/net/dial.go:375 +0x22b
net.(*Dialer).Dial(0xc4201c2300, 0x21c2457, 0x3, 0xc42036a120, 0x20, 0x60, 0x110, 0x110, 0xc420b5bb00)
	/usr/local/go/src/net/dial.go:320 +0x75
net.(*Dialer).Dial-fm(0x21c2457, 0x3, 0xc42036a120, 0x20, 0xc421611320, 0xc42070aae8, 0x4031b6, 0x642a89)
	/go/src/github.com/containous/traefik/vendor/github.com/xenolf/lego/acme/http.go:25 +0x52
net/http.(*Transport).dial(0x35c4f80, 0x23c3b00, 0xc420056020, 0x21c2457, 0x3, 0xc42036a120, 0x20, 0xc420743360, 0x42cbf9, 0x427eca, ...)
	/usr/local/go/src/net/http/transport.go:901 +0x78
net/http.(*Transport).dialConn(0x35c4f80, 0x23c3b00, 0xc420056020, 0x0, 0xc42068a700, 0x5, 0xc42036a120, 0x20, 0x1, 0x0, ...)
	/usr/local/go/src/net/http/transport.go:1143 +0x317
net/http.(*Transport).getConn.func4(0x35c4f80, 0x23c3b00, 0xc420056020, 0xc4216ae390, 0xc420c54360)
	/usr/local/go/src/net/http/transport.go:957 +0x78
created by net/http.(*Transport).getConn
	/usr/local/go/src/net/http/transport.go:956 +0x363
@traefiker
Copy link
Contributor

Closed by #3579.

@traefik traefik locked and limited conversation to collaborators Sep 1, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

5 participants