docs: clarify durable runtime readiness boundary

This commit is contained in:
Code Queue Review
2026-05-22 17:55:01 +00:00
parent ab252f524e
commit cd95b39e0e
3 changed files with 40 additions and 0 deletions
+2
View File
@@ -92,8 +92,10 @@ async function run() {
assert.equal(health.body.db.connectionResult, "not_attempted_missing_env");
assert.equal(health.body.db.ready, false);
assert.deepEqual(health.body.db.missingEnv, ["HWLAB_CLOUD_DB_URL", "HWLAB_CLOUD_DB_SSL_MODE"]);
assert.equal(health.body.runtime.adapter, "memory");
assert.equal(health.body.runtime.durable, false);
assert.equal(health.body.runtime.status, "degraded");
assert.match(health.body.runtime.reason, /process-local/u);
logOk("health degraded DB contract");
const v1 = await requestJson(`${baseUrl}/v1`);