From ba8ab5083fe2184e5c11455877e794d896f50b28 Mon Sep 17 00:00:00 2001 From: Nick Cabatoff Date: Thu, 25 Feb 2021 10:50:14 -0500 Subject: [PATCH] InfluxDB has released a 2.x series of docker images, which is breaking our tests. Use the 1.8 image instead. (#11005) --- plugins/database/influxdb/influxdb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/database/influxdb/influxdb_test.go b/plugins/database/influxdb/influxdb_test.go index e3338da520..636e8175eb 100644 --- a/plugins/database/influxdb/influxdb_test.go +++ b/plugins/database/influxdb/influxdb_test.go @@ -59,7 +59,7 @@ func prepareInfluxdbTestContainer(t *testing.T) (func(), *Config) { runner, err := docker.NewServiceRunner(docker.RunOptions{ ImageRepo: "influxdb", - ImageTag: "alpine", + ImageTag: "1.8-alpine", Env: []string{ "INFLUXDB_DB=vault", "INFLUXDB_ADMIN_USER=" + c.Username,