Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2025 09:32 AM
Hi @h2p5cq8,
Is it possible for you to Instead of a continuous workflow, you can use a scheduled workflow that runs every minute. To prevent multiple instances from running simultaneously, you can implement concurrency control:
1. Set the workflow to run every minute using a cron expression like `* * * * *`.
2. At the beginning of your workflow, add a check to see if a previous instance is still running.
Or add dependency tasks in your workflow.