-
Notifications
You must be signed in to change notification settings - Fork 166
Add flowId to update-run request #1879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds flowId to the UpdateRunProgressRequest type and threads it through the flow execution codebase to support tracking flow identity during run updates.
Changes:
- Added
flowIdas a required field toUpdateRunProgressRequestschema - Updated flow execution functions to pass
flowIdparameter through the call chain - Modified engine progress service to include
flowIdin update requests
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| packages/shared/src/lib/engine/requests.ts | Added required flowId field to UpdateRunProgressRequest type definition |
| packages/server/worker/src/lib/executors/flow-job-executor.ts | Threaded flowId through setFirstRunningState and updateRunWithError functions, moved variable declarations after flow retrieval |
| packages/engine/src/lib/services/progress.service.ts | Added flowId from engine constants to the update run request payload |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 3 out of 3 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.



Part of OPS-3195.
Additional notes: