@replayio/app-building 1.23.0 → 1.24.0
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.
- package/dist/fly.js +1 -1
- package/package.json +1 -1
package/dist/fly.js
CHANGED
|
@@ -135,7 +135,7 @@ export async function createMachine(app, token, image, env, name) {
|
|
|
135
135
|
catch (err) {
|
|
136
136
|
await deleteVolume(app, token, volumeId).catch(() => { });
|
|
137
137
|
const msg = err instanceof Error ? err.message : String(err);
|
|
138
|
-
if (msg.includes("412")) {
|
|
138
|
+
if (msg.includes("412") || msg.includes("insufficient")) {
|
|
139
139
|
console.log(`Insufficient resources in ${region}, trying next region...`);
|
|
140
140
|
continue;
|
|
141
141
|
}
|