@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))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-backend-handler",
3
- "version": "1.1.52",
3
+ "version": "1.1.53",
4
4
  "description": "backend handler",
5
5
  "main": "backend-handler.ts",
6
6
  "scripts": {