Skip to content

Commit

Permalink
Use influxdb 1.8.4
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>
  • Loading branch information
manuio committed Feb 5, 2021
1 parent 423a8ff commit 23ca5d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion consumers/writers/influxdb/setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestMain(m *testing.M) {
"INFLUXDB_USER_PASSWORD=test",
"INFLUXDB_DB=test",
}
container, err := pool.Run("influxdb", "1.8.4-alpine", cfg)
container, err := pool.Run("influxdb", "1.8.4", cfg)
if err != nil {
testLog.Error(fmt.Sprintf("Could not start container: %s", err))
}
Expand Down
2 changes: 1 addition & 1 deletion docker/addons/influxdb-writer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ volumes:

services:
influxdb:
image: influxdb:1.8.4-alpine
image: influxdb:1.8.4
container_name: mainflux-influxdb
restart: on-failure
environment:
Expand Down
2 changes: 1 addition & 1 deletion readers/influxdb/setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestMain(m *testing.M) {
"INFLUXDB_USER_PASSWORD=test",
"INFLUXDB_DB=test",
}
container, err := pool.Run("influxdb", "1.8.4-alpine", cfg)
container, err := pool.Run("influxdb", "1.8.4", cfg)
if err != nil {
testLog.Error(fmt.Sprintf("Could not start container: %s", err))
}
Expand Down

0 comments on commit 23ca5d3

Please sign in to comment.