Workflow instance methods pause(), resume(), restart(), and terminate() are now available in local development when using wrangler dev.
You can now test the full Workflow instance lifecycle locally:
const instance = await env.MY_WORKFLOW.create({ id: "my-instance-id",});
await instance.pause(); // pauses a running workflow instanceawait instance.resume(); // resumes a paused instanceawait instance.restart(); // restarts the instance from the beginningawait instance.terminate(); // terminates the instance immediatelySource: Cloudflare
Latest Posts
- Introducing the Amazon EKS Hybrid Nodes gateway for hybrid Kubernetes networking

- Amazon CloudWatch Logs Insights introduces JOIN and sub-query commands

- Amazon Location Service now offers bulk address validation for the United States, Canada, Australia, and the United Kingdom

- AWS Glue now supports OAuth 2.0 for Snowflake connectivity






