Skip to content

Commit 14b880c

Browse files
author
Randy Coulman
committed
feat: Upgrade to influx 2.0-rc
The tests are currently failing due to the removal of the delete-with-predictate API. It was removed in influxdata/influxdb#19580 and there is an open issue for restoring it in influxdata/influxdb#19635.
1 parent 491bde1 commit 14b880c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ start_influx_v1: stop_influx_v1
2424
--name=${CONTAINER_NAME_V1} influxdb -config /etc/influxdb/influxdb-meta.conf
2525

2626
start_influx_v2: stop_influx_v2
27-
docker run -tid -p 9999:9999 \
28-
--name=${CONTAINER_NAME_V2} quay.io/influxdb/influxdb:2.0.0-beta
27+
docker run -tid -p 9999:8086 \
28+
--name=${CONTAINER_NAME_V2} quay.io/influxdb/influxdb:2.0.0-rc
2929

3030
wait_for_influx: wait_for_influx_v1 provision_influx_v2
3131

test/telemetry_influx_db_test.exs

-1
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,6 @@ defmodule TelemetryInfluxDBTest do
698698
defp make_config(%{version: :v2, protocol: :http, token: token}, overrides) do
699699
@default_config
700700
|> be_v2(token)
701-
|> Map.merge(%{protocol: :http, port: 9999})
702701
|> Map.merge(overrides)
703702
end
704703

0 commit comments

Comments
 (0)