From ea2d65f8bb02e72983b184febc0619a806264207 Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Mon, 10 Feb 2020 14:52:05 +0100 Subject: [PATCH] Update valkeyrie to fix the support of Redis. --- go.mod | 2 +- go.sum | 4 ++-- integration/redis_test.go | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index fe9ecbf56..b52cff09b 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( github.com/Shopify/sarama v1.23.1 // indirect github.com/VividCortex/gohistogram v1.0.0 // indirect github.com/abbot/go-http-auth v0.0.0-00010101000000-000000000000 - github.com/abronan/valkeyrie v0.0.0-20191010124425-1ae9442de16e + github.com/abronan/valkeyrie v0.0.0-20200127174252-ef4277a138cd github.com/c0va23/go-proxyprotocol v0.9.1 github.com/cenkalti/backoff/v3 v3.1.1 github.com/containerd/containerd v1.3.2 // indirect diff --git a/go.sum b/go.sum index 19e905318..784db3e55 100644 --- a/go.sum +++ b/go.sum @@ -75,8 +75,8 @@ github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWso github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= -github.com/abronan/valkeyrie v0.0.0-20191010124425-1ae9442de16e h1:4SrbWyef51DHDc957/8Ms/fDM4D+3bkbXqg6OTnIEAo= -github.com/abronan/valkeyrie v0.0.0-20191010124425-1ae9442de16e/go.mod h1:2RUNONRAQ8bS1QcVJF3dYO/faiEro6NAAIQ6CqBkpD0= +github.com/abronan/valkeyrie v0.0.0-20200127174252-ef4277a138cd h1:UlQRt3CZdeD+WfDamDtdDDOu84CYbGIh9/B28TgzCZk= +github.com/abronan/valkeyrie v0.0.0-20200127174252-ef4277a138cd/go.mod h1:2RUNONRAQ8bS1QcVJF3dYO/faiEro6NAAIQ6CqBkpD0= github.com/akamai/AkamaiOPEN-edgegrid-golang v0.9.0 h1:rXPPPxDA4GCPN0YWwyVHMzcxVpVg8gai2uGhJ3VqOSs= github.com/akamai/AkamaiOPEN-edgegrid-golang v0.9.0/go.mod h1:zpDJeKyp9ScW4NNrbdr+Eyxvry3ilGPewKoXw3XGN1k= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= diff --git a/integration/redis_test.go b/integration/redis_test.go index b8d1c9c31..7c9e6044b 100644 --- a/integration/redis_test.go +++ b/integration/redis_test.go @@ -76,7 +76,7 @@ func (s *RedisSuite) TestSimpleConfiguration(c *check.C) { "traefik/http/routers/Router0/service": "simplesvc", "traefik/http/routers/Router0/rule": "Host(`kv1.localhost`)", "traefik/http/routers/Router0/priority": "42", - "traefik/http/routers/Router0/tls": "", + "traefik/http/routers/Router0/tls": "true", "traefik/http/routers/Router1/rule": "Host(`kv2.localhost`)", "traefik/http/routers/Router1/priority": "42", @@ -109,7 +109,7 @@ func (s *RedisSuite) TestSimpleConfiguration(c *check.C) { "traefik/http/services/Service03/weighted/services/1/name": "srvcB", "traefik/http/services/Service03/weighted/services/1/weight": "42", - "traefik/http/middlewares/compressor/compress": "", + "traefik/http/middlewares/compressor/compress": "true", "traefik/http/middlewares/striper/stripPrefix/prefixes/0": "foo", "traefik/http/middlewares/striper/stripPrefix/prefixes/1": "bar", "traefik/http/middlewares/striper/stripPrefix/forceSlash": "true",