Стабилизация восстановления Bridge и Quick Connect
This commit is contained in:
@@ -351,6 +351,18 @@ export function provisioningAttemptViewState(
|
||||
if (attempt.status === "succeeded" && attempt.control_state === "ready") {
|
||||
return "settling";
|
||||
}
|
||||
// The network operation can be projected as succeeded immediately before
|
||||
// its service-owned control bootstrap appears in the next snapshot. Keep
|
||||
// the click-owned inline progress surface during that exact handoff; a
|
||||
// terminal bootstrap failure still arrives as failed/control_not_ready.
|
||||
if (
|
||||
attempt.status === "succeeded"
|
||||
&& attempt.phase === "network_applied"
|
||||
&& attempt.control_state === "unknown"
|
||||
&& attempt.safe_next_action === "verify-control-read-only"
|
||||
) {
|
||||
return "settling";
|
||||
}
|
||||
if (TERMINAL_PROVISIONING_STATUSES.has(attempt.status)) return "failed";
|
||||
}
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user