From fbf908f9be386cbb3526b93897e226bc5fe8bf5c Mon Sep 17 00:00:00 2001 From: Kai Hudalla Date: Thu, 28 Sep 2023 09:51:12 +0200 Subject: [PATCH] Fix Influx Token environment variable name The service definition of the FMS Server component has used a wrong environment variable name to determine the path to the token used for authenticating to InfluxDB. This has been fixed. --- fms-blueprint-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fms-blueprint-compose.yaml b/fms-blueprint-compose.yaml index 47b77d2..8c42cfb 100644 --- a/fms-blueprint-compose.yaml +++ b/fms-blueprint-compose.yaml @@ -120,7 +120,7 @@ services: condition: service_healthy env_file: "./influxdb/fms-demo.env" environment: - INFLUXDB_API_TOKEN_FILE: "/tmp/fms-demo.token" + INFLUXDB_TOKEN_FILE: "/tmp/fms-demo.token" RUST_LOG: "info" volumes: - type: "volume"