-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Ccip-3389 offchain view to include active jobspecs #16572
base: develop
Are you sure you want to change the base?
Conversation
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
b84301f
to
5cfac99
Compare
Flakeguard SummaryRan new or updated tests between View Flaky Detector Details | Compare Changes Found Flaky Tests ❌1 Results
ArtifactsFor detailed logs of the failed tests, please refer to the artifact failed-test-results-with-logs-2f1a8b7b-e38d-4fe1-bfb9-91269dfd7aee.json. |
Flakeguard SummaryRan new or updated tests between View Flaky Detector Details | Compare Changes Found Flaky Tests ❌1 Results
ArtifactsFor detailed logs of the failed tests, please refer to the artifact failed-test-results-with-logs-dc1fe0cb-b365-4ac5-9b36-715226e5c79e.json. |
Flakeguard SummaryRan new or updated tests between View Flaky Detector Details | Compare Changes Found Flaky Tests ❌3 Results
ArtifactsFor detailed logs of the failed tests, please refer to the artifact failed-test-results-with-logs-b401c58e-847e-4bb9-9508-9bb2d8f67388.json. |
|
@@ -339,6 +339,7 @@ func BuildOCR3ConfigForCCIPHome( | |||
if !exists { | |||
return nil, fmt.Errorf("no OCR config for chain %d", destSelector) | |||
} | |||
p2pIDs = append(p2pIDs, node.PeerID) |
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.
nodes.PeerIDs()
was returning peerids in a sorted manner which was making peerid, transmitter account , signer combination getting jumbled up later in this func. Fixed the order here
OffchainPublicKey [32]byte `json:"offchainPublicKey"` | ||
} | ||
|
||
func (n RMNHomeNode) MarshalJSON() ([]byte, error) { |
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.
no need for custom marshal unmarshal as we are saving decode peerids and []byte type already marshals correctly to hex.EncodeToString
// to ensure the view is valid | ||
b, err := jsonData.MarshalJSON() | ||
require.NoError(t, err) | ||
fmt.Println(string(b)) |
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.
Needed?
@@ -341,7 +342,8 @@ func (s *UnimplementedJobServiceClient) GetProposal(ctx context.Context, in *job | |||
|
|||
// ListJobs implements job.JobServiceClient. | |||
func (s *UnimplementedJobServiceClient) ListJobs(ctx context.Context, in *jobv1.ListJobsRequest, opts ...grpc.CallOption) (*jobv1.ListJobsResponse, error) { | |||
panic("unimplemented") | |||
// returns blank response |
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.
nit: maybe move this comment to the doc comment and explain reasoning as to why
More comprehensible views with -