@rivetkit/engine-runner 2.3.0-rc.6 → 2.3.0-rc.8
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.cjs +3 -3
- package/dist/mod.cjs.map +1 -1
- package/dist/mod.js +3 -3
- package/dist/mod.js.map +1 -1
- package/package.json +3 -3
- package/src/mod.ts +3 -3
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 (
|
|
2309
|
+
} catch (error) {
|
|
2310
2310
|
(_d = this.log) == null ? void 0 : _d.error({
|
|
2311
2311
|
msg: "error starting runner actor",
|
|
2312
2312
|
actorId,
|
|
2313
|
-
|
|
2313
|
+
error
|
|
2314
2314
|
});
|
|
2315
|
-
instance.actorStartPromise.reject(
|
|
2315
|
+
instance.actorStartPromise.reject(error);
|
|
2316
2316
|
await this.forceStopActor(actorId, generation);
|
|
2317
2317
|
}
|
|
2318
2318
|
}
|