stations readable from MDM (raw). get by id ok

This commit is contained in:
Ivan I. Ovchinnikov
2026-07-07 22:17:44 +03:00
parent fe54c095ab
commit b37009a169
8 changed files with 142 additions and 11 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ services:
volumes:
- kafka-data:/var/lib/kafka/data
healthcheck:
test: ["CMD-SHELL", "kafka-topics.sh --bootstrap-server kafka:9092 --list >/dev/null 2>&1"]
test: ["CMD-SHELL", "/opt/kafka/bin/kafka-topics.sh --bootstrap-server kafka:9092 --list >/dev/null 2>&1"]
interval: 10s
timeout: 10s
retries: 30
+1 -1
View File
@@ -192,7 +192,7 @@ wait_for_postgres() {
wait_for_kafka() {
local attempt
for attempt in {1..60}; do
if compose exec -T kafka kafka-topics.sh --bootstrap-server kafka:9092 --list >/dev/null 2>&1; then
if compose exec -T kafka /opt/kafka/bin/kafka-topics.sh --bootstrap-server kafka:9092 --list >/dev/null 2>&1; then
echo "Kafka is ready."
return 0
fi