From 7a3053741ceb48ead04cb038c3d3686f63954c86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brage=20Skj=C3=B8nborg?= Date: Sun, 18 Jan 2026 16:15:41 +0100 Subject: [PATCH] Fixes --- apps/py-metadata/app.py | 2 +- apps/py-watcher/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/py-metadata/app.py b/apps/py-metadata/app.py index 5715125f..7eab11b9 100644 --- a/apps/py-metadata/app.py +++ b/apps/py-metadata/app.py @@ -1,7 +1,7 @@ import signal import sys from threading import Thread -from api.health_api import init_health_api +from api.health_api import app as health_app, init_health_api from config.database_config import DatabaseConfig from db.database import Database from utils.logger import logger diff --git a/apps/py-watcher/app.py b/apps/py-watcher/app.py index 31a56d15..83b44de8 100644 --- a/apps/py-watcher/app.py +++ b/apps/py-watcher/app.py @@ -80,7 +80,7 @@ def main(): heartbeat_ref=get_heartbeat ) - uvicorn.run(app, host="0.0.0.0", port=8000) + uvicorn.run(app, host="0.0.0.0", port=8080) except Exception as e: logger.error(f"❌ Kritisk feil i app: {e}")