diff --git a/decnet/agent/app.py b/decnet/agent/app.py index cc5218c..fb72390 100644 --- a/decnet/agent/app.py +++ b/decnet/agent/app.py @@ -59,7 +59,7 @@ class MutateRequest(BaseModel): @app.get("/health") async def health() -> dict[str, str]: - return {"status": "ok", "marker": "push-test-2"} + return {"status": "ok"} @app.get("/status") diff --git a/tests/test_factory.py b/tests/test_factory.py index 916dab4..662cfc0 100644 --- a/tests/test_factory.py +++ b/tests/test_factory.py @@ -27,7 +27,7 @@ def test_factory_mysql_branch(monkeypatch): first query — so the repository constructs cleanly here. """ monkeypatch.setenv("DECNET_DB_TYPE", "mysql") - monkeypatch.setenv("DECNET_DB_URL", "mysql+aiomysql://u:p@127.0.0.1:3306/x") + monkeypatch.setenv("DECNET_DB_URL", "mysql+asyncmy://u:p@127.0.0.1:3306/x") repo = get_repository() assert isinstance(repo, MySQLRepository)