runtime: dry-check worker restore

This commit is contained in:
2026-07-24 15:17:53 +09:00
parent b8cc58ac29
commit f7482d6151
5 changed files with 521 additions and 15 deletions
+11
View File
@@ -2749,6 +2749,17 @@ fn embedded_worker_projection_diagnostics(
}
}
if let Some(restore_dry_check) = execution.restore_dry_check.as_ref() {
diagnostics.push(diagnostic(
"embedded_worker_execution_restore_dry_check",
DiagnosticSeverity::Error,
format!(
"Worker restore dry-test {}: {}",
restore_dry_check.code, restore_dry_check.message
),
));
}
diagnostics
}