FIX: Pulsar Manager credentials + MapStore static files + CrateDB tables + QuantumLeap persistence

This commit is contained in:
Eric FELIXINE
2026-05-07 15:07:10 -04:00
parent 66a22a2421
commit 5a5234f868
3 changed files with 662552 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ services:
- smart-city-cratedb-stellio-data:/data - smart-city-cratedb-stellio-data:/data
command: -Ccluster.name=stellio command: -Ccluster.name=stellio
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4200/_admin/v1/health"] test: ["CMD", "curl", "-f", "http://localhost:4200/"]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

662548
simulator.log

File diff suppressed because it is too large Load Diff

View File

@@ -631,9 +631,9 @@ class MultiMQTT:
def _setup(self): def _setup(self):
# Utiliser les variables d'environnement pour les brokers # Utiliser les variables d'environnement pour les brokers
brokers = [ brokers = [
("EMQX", EMQX_HOST, EMQX_PORT, False, "", ""), ("emqx", EMQX_HOST, EMQX_PORT, False, "", ""),
("Mosquitto", MOSQUITTO_HOST, MOSQUITTO_PORT, False, "bunker", "bunker"), ("mosquitto", MOSQUITTO_HOST, MOSQUITTO_PORT, False, "", ""),
("BunkerM", BUNKERM_HOST, BUNKERM_PORT, False, "bunker", "bunker"), # Port 1900 = MQTT simple, pas TLS ("bunkerm", BUNKERM_HOST, BUNKERM_PORT, False, "bunker", "bunker"), # Port 1900 = MQTT simple, pas TLS
] ]
print("[MQTT] 🔌 Connexion aux brokers...") print("[MQTT] 🔌 Connexion aux brokers...")
for name, host, port, tls, user, pwd in brokers: for name, host, port, tls, user, pwd in brokers: