Sequential requirement is per-user, not for the entire queue. Actually we'd ideally have _multiple_
Sequential requirement is per-user, not for the entire queue. Actually we'd ideally have multiple guaranteed sequential workflows per user


workflows.api.error.internal_server [code: 10001]
Error: (workflow.not_found) Provided Workflow does not exist. Upon the second redeployment, it would work correctly.waitForEvent fails due to a timeout exception, the step is retried as expected.Workflow V2: Error processing batch 5 {
"message": "Aborting engine: Grace period complete",
"error": {
"remote": true,
"durableObjectReset": true
},10001 as earlier.This instance experienced an internal error which prevented it from running. If this is persistent, please contact support: https://cfl.re/3WgEyrHqueued state and will never run.
--remote for it work.--remote also makes my workflow to run remotely as well. Ideally, I'd like to run workflows locally while still being able to have certs work.
Error: (workflow.not_found) Provided Workflow does not exist when deployed but If I run it locally (but on remote mode) i detects the workflow and triggers it successfully. (i've tried re-deploying without success)Uploaded oka-app (13.95 sec) │14:14:40 │ typegen │ ℹ Watching for changes in /Users/dangamble/Code/oka-app...
│
✘ [ERROR] A request to the Cloudflare API (/accounts/###/workflows/pickup-points-post-create-workflow) failed. │──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
│
workflows.api.error.internal_server [code: 10001]Error: (workflow.not_found) Provided Workflow does not exist
at callFetcher(cloudflare-internal:workflows-api:24:15)
at WorkflowImpl.create(cloudflare-internal:workflows-api:78:24)export class SimpleWorkflow extends WorkflowEntrypoint<
Env,
SimpleWorkflowPayload
> {
async run(event: WorkflowEvent<SimpleWorkflowPayload>, step: WorkflowStep) {
console.log("Simple workflow started", event.payload);
await step.do("testing timeout", async () => {
console.log(`Initializing test: ${event.payload.name}`);
const eventResponse = await step.waitForEvent("waiting for event", {
type: "test",
timeout: 10000,
});
console.log("Test event received", eventResponse);
return { status: "initialized" };
});
console.log("workflow complete");
}
}Workflow V2: Error processing batch 5 {
"message": "Aborting engine: Grace period complete",
"error": {
"remote": true,
"durableObjectReset": true
},This instance experienced an internal error which prevented it from running. If this is persistent, please contact support: https://cfl.re/3WgEyrH