@rivetkit/engine-runner 2.3.0-rc.8 → 2.3.0-rc.9

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/mod.js CHANGED
@@ -2306,13 +2306,13 @@ var Runner = class {
2306
2306
  });
2307
2307
  await this.#config.onActorStart(actorId, generation, actorConfig);
2308
2308
  instance.actorStartPromise.resolve();
2309
- } catch (error) {
2309
+ } catch (err) {
2310
2310
  (_d = this.log) == null ? void 0 : _d.error({
2311
2311
  msg: "error starting runner actor",
2312
2312
  actorId,
2313
- error
2313
+ err
2314
2314
  });
2315
- instance.actorStartPromise.reject(error);
2315
+ instance.actorStartPromise.reject(err);
2316
2316
  await this.forceStopActor(actorId, generation);
2317
2317
  }
2318
2318
  }