@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.
Files changed (2) hide show
  1. package/dist/fly.js +1 -1
  2. 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@replayio/app-building",
3
- "version": "1.23.0",
3
+ "version": "1.24.0",
4
4
  "description": "Library for managing agentic app-building containers",
5
5
  "type": "module",
6
6
  "exports": {