@kumori/aurora-backend-handler 1.1.52 → 1.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -140,6 +140,10 @@ const determineFinalStatusAndError = (
|
|
|
140
140
|
let finalStatus = existingService?.status;
|
|
141
141
|
let finalError = existingService?.error;
|
|
142
142
|
|
|
143
|
+
if (existingService?.status?.code === "REMOVING_SERVICE") {
|
|
144
|
+
return { finalStatus, finalError, pendingErrorIndex: -1 };
|
|
145
|
+
}
|
|
146
|
+
|
|
143
147
|
if (isNewer) {
|
|
144
148
|
const revisionHasError = !!currentRevision?.errorCode;
|
|
145
149
|
finalStatus = (revisionHasError || (currentRevision?.status && revisionTs >= incomingTs))
|