We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87e8aa commit 89a9d24Copy full SHA for 89a9d24
packages/rivetkit/src/remote-manager-driver/mod.ts
@@ -139,7 +139,9 @@ export class RemoteManagerDriver implements ManagerDriver {
139
name,
140
key: serializeActorKey(key),
141
runner_name_selector: this.#config.runnerName,
142
- input: input ? cbor.encode(actorInput).toString("base64") : undefined,
+ input: actorInput
143
+ ? cbor.encode(actorInput).toString("base64")
144
+ : undefined,
145
crash_policy: "sleep",
146
});
147
0 commit comments