can you please share your account id?
can you please share your account id?

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)


[[workflows]] to my toml file?isolatedStorage otherwise it was complaining about not being able to find my imported Workflow class to bind.workerd/jsg/util.c++:320: error: e = kj/table.c++:49: failed: inserted row already exists in table
singleWorkfer: true got it working, so it must be that the workflows each spin up their own worker, and try to initialize something for each test?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/3WgEyrHname = "docpad-session-init"
main = "src/index.ts"
compatibility_date = "2024-10-22"
compatibility_flags = ["nodejs_compat"]
[[workflows]]
binding = "DOCPAD_SESSION_INIT"
name = "docpad-session-init"
class_name = "DocpadSessionInit"import { defineWorkersConfig } from '@cloudflare/vitest-pool-workers/config';
export default defineWorkersConfig({
test: {
poolOptions: {
workers: {
isolatedStorage: false,
wrangler: { configPath: './wrangler.toml' },
},
poolMatchGlobs: [],
},
maxConcurrency: 1,
},
})import { createExecutionContext } from "cloudflare:test";
import { describe, it, expect } from "vitest";
describe("test", () => {
it('test', () => {
// referencing something from cloudflare:test
const ctx = createExecutionContext()
expect(2).toBe(2)
})
})singleWorkfer: trueconst db = getDB(this.env);