fix: add durable cloud api runtime adapter

This commit is contained in:
Code Queue Review
2026-05-22 18:27:12 +00:00
parent dcb496bf95
commit b775aba196
20 changed files with 1543 additions and 43 deletions
+4
View File
@@ -96,6 +96,10 @@ async function run() {
assert.equal(health.body.runtime.durable, false);
assert.equal(health.body.runtime.status, "degraded");
assert.match(health.body.runtime.reason, /process-local/u);
assert.equal(health.body.readiness.components.db, "blocked");
assert.equal(health.body.readiness.components.runtime, "waiting_for_db");
assert.ok(health.body.blockerCodes.includes("db_runtime_config_blocked"));
assert.ok(health.body.blockerCodes.includes("runtime_durable_adapter_missing"));
logOk("health degraded DB contract");
const v1 = await requestJson(`${baseUrl}/v1`);