ignotum 0.0.15 → 0.0.16

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/cli/bin.mjs CHANGED
@@ -28476,7 +28476,7 @@ var IdGenerator = class IdGenerator extends Context.Service()("@ignotum/shared/i
28476
28476
  };
28477
28477
  //#endregion
28478
28478
  //#region package.json
28479
- var version = "0.0.15";
28479
+ var version = "0.0.16";
28480
28480
  //#endregion
28481
28481
  //#region ../shared/dist/routing/pattern.js
28482
28482
  var RoutingDefinitionError = class extends Schema.TaggedError()("RoutingDefinitionError", {
@@ -29669,8 +29669,8 @@ const controlClientLayer = Layer.effect(ControlClient, Effect.gen(function* () {
29669
29669
  const fileSystem = yield* FileSystem.FileSystem;
29670
29670
  const http = yield* HttpClient.HttpClient;
29671
29671
  const idempotentHttp = http.pipe(HttpClient.retryTransient({
29672
- schedule: Schedule.exponential("100 millis"),
29673
- times: 3
29672
+ schedule: Schedule.spaced("100 millis"),
29673
+ times: 20
29674
29674
  }));
29675
29675
  const authenticate = (request) => request.pipe(HttpClientRequest.bearerToken(config.token), HttpClientRequest.acceptJson);
29676
29676
  const decodeResponse = Effect.fn("ControlClient.decodeResponse")(function* (response, schema) {
@@ -32240,7 +32240,7 @@ const uploadVersion = Effect.fn("Deploy.upload")(function* (configuration, build
32240
32240
  });
32241
32241
  });
32242
32242
  yield* Effect.forEach(files, (file) => control.uploadVersionFile(configuration.appId, versionId, file), {
32243
- concurrency: 4,
32243
+ concurrency: 1,
32244
32244
  discard: true
32245
32245
  }).pipe(Effect.catchTags({ ControlClientUnavailable: (cause) => VersionUploadInterrupted.make({
32246
32246
  cause,