From a2502eff91406944aae3cc633592bb4ad8a6b278 Mon Sep 17 00:00:00 2001 From: Eric FELIXINE Date: Mon, 4 May 2026 21:57:57 -0400 Subject: [PATCH] Simulator: FROST_URL default to localhost:8086 (expose frost_http-web-1:8080) --- simulator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator.py b/simulator.py index 45df601a..4efd3f7a 100644 --- a/simulator.py +++ b/simulator.py @@ -58,7 +58,7 @@ OR_ADMIN_USER = os.environ.get("OR_ADMIN_USER", "admin") OR_ADMIN_PASS = os.environ.get("OR_ADMIN_PASS", "Digitribe972") OR_REALM = os.environ.get("OR_REALM", "smartcity") OR_TOKEN_REALM = os.environ.get("OR_TOKEN_REALM", "master") # Realm pour obtention token -FROST_URL = os.environ.get("FROST_URL", "http://frost_http-web-1:8080/FROST-Server/v1.1") +FROST_URL = os.environ.get("FROST_URL", "http://localhost:8086/FROST-Server/v1.1") # Exposer frost_http-web-1:8080 -> host:8086 # InfluxDB config ENABLE_INFLUX = os.environ.get("ENABLE_INFLUX", "1") == "1"