Miniflare/local dev. What version of wrangler are you on?
Miniflare/local dev. What version of wrangler are you on?
3.95.0Successful nevertheless.userId in the params, generate a composite ID e.g. ${userId}-${randomHex} event param?WorkflowEvent Requests (invocations): the number of Workflow invocations. Subrequests made from a Workflow do not incur additional request costs.


Serialized RPC arguments or return values are limited to 1MiB, but the size of this value was: 4972045 bytes.
3.95.0{
"$cloudflare": {
"diagnosticsChannelEvents": [],
"truncated": false,
"event": {
"rpcMethod": "run"
},
"scriptName": "minifeed",
"outcome": "exception",
"eventType": "rpc",
"entrypoint": "AddOrUpdateItemWorkflow",
"scriptVersion": {
"id": "44488eac-<REDACTED>-b1db278bc4cc"
},
"executionModel": "stateless",
"$metadata": {
"requestId": "L7NQ<REDACTED>U6AF",
"id": "01JE<REDACTED>VKMK8",
"type": "cf-worker-event",
"error": "run"
}
},
"level": "error",
"message": "run"
}SuccessfuluserId${userId}-${randomHex}WorkflowEventSerialized RPC arguments or return values are limited to 1MiB, but the size of this value was: 4972045 bytes.import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiToken: this.env.CLOUDFLARE_API_TOKEN
});
for await (const instance of client.workflows.instances.list('my-workflow', { account_id: this.env.ACCOUNT_ID, status: "running"})) {
console.log(instance.id);
}