-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Extend ChangesetOutput to include a list of ProposedJobs #16129
Extend ChangesetOutput to include a list of ProposedJobs #16129
Conversation
2f32f73
to
15508a8
Compare
// Job Distributor. | ||
type ProposedJob struct { | ||
JobId string | ||
Node string |
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.
is this the NodeId returned by JD?
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.
It's whatever node was going to be used in the existing code - I believe JobSpec right now is indexed by node. That one.
AER Report: CI Coreaer_workflow , commit , Clean Go Tidy & Generate , Detect Changes , Scheduled Run Frequency , Core Tests (go_core_tests) , Core Tests (go_core_tests_integration) , Core Tests (go_core_ccip_deployment_tests) , Core Tests (go_core_fuzz) , GolangCI Lint (deployment) , Core Tests (go_core_race_tests) , test-scripts , lint , SonarQube Scan 1. Empty block in code: Golang Lint (deployment)Source of Error:
Why: The linter detected an empty block in the code, which is generally considered bad practice as it can lead to confusion and maintenance issues. Suggested fix: Remove the empty block or add meaningful code inside the block if it is necessary for future logic. AER Report: Operator UI CI ran successfully ✅ |
15508a8
to
9cc7658
Compare
…s the job spec, the node id, and the job id (as returned from the propose API of JD). Also, mark JobSpecs as deprecated. Once we remove all JobSpecs use, we can remove that field.
9cc7658
to
bbb8677
Compare
|
Extend ChangesetOutput to include a ProposedJobs slice, which contains the job spec, the node id, and the job id (as returned from the propose API of JD). Also, mark JobSpecs as deprecated. Once we remove all JobSpecs use, we can remove that field.
DPA-1518