fix: fence deferred compatibility writes
Some checks failed
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / pytest-smoke (push) Failing after 1s

This commit is contained in:
tegwick 2026-08-21 18:11:21 +02:00
parent 9adeb013cd
commit 1d258626e0
2 changed files with 10 additions and 1 deletions

View file

@ -127,4 +127,7 @@ def test_read_only_group_rejects_write(tmp_path) -> None:
assert response.status_code == 503
assert response.json()["detail"] == "compatibility group is read-only"
deferred = client.post("/annotations", headers=HEADERS)
assert deferred.status_code == 503
assert deferred.json()["detail"] == "compatibility group is read-only"
asyncio.run(store.aclose())