diff --git a/cmd/influxd/server_integration_test.go b/cmd/influxd/server_integration_test.go index 627496ad1e..3f1e2a778d 100644 --- a/cmd/influxd/server_integration_test.go +++ b/cmd/influxd/server_integration_test.go @@ -1837,6 +1837,7 @@ func Test_ServerOpenTSDBIntegration(t *testing.T) { now := time.Now().UTC().Round(time.Second) c, _ := main.NewTestConfig() o := main.OpenTSDB{ + Addr: "127.0.0.1", Port: 0, Enabled: true, Database: "opentsdb", @@ -1892,6 +1893,7 @@ func Test_ServerOpenTSDBIntegration_WithTags(t *testing.T) { c.Port = 0 c.Admin.Enabled = false o := main.OpenTSDB{ + Addr: "127.0.0.1", Port: 0, Enabled: true, Database: "opentsdb", @@ -1950,6 +1952,7 @@ func Test_ServerOpenTSDBIntegration_BadData(t *testing.T) { c.Port = 0 c.Admin.Enabled = false o := main.OpenTSDB{ + Addr: "127.0.0.1", Port: 0, Enabled: true, Database: "opentsdb",