-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
chore(cre-deployments): cre-227 forwarder CS refactor #16177
base: develop
Are you sure you want to change the base?
Conversation
} | ||
|
||
// Deprecated: Use ConfigureInitialContractsChangeset instead. | ||
func ConfigureInitialContracts(lggr logger.Logger, req *kslib.ConfigureContractsRequest) (deployment.ChangesetOutput, 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.
was unused except line 28; consolidate
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) , Core Tests (go_core_race_tests) , GolangCI Lint (deployment) , test-scripts , lint , SonarQube Scan 1. Comment formatting issue: Golang Lint (deployment)Source of Error:deployment/keystone/changeset/configure_contracts.go:28:2: commentFormatting: put a space between `//` and comment text (gocritic)
//foundForwarder = false
^ Why: The error is caused by a comment in the code that does not follow the proper formatting convention. Specifically, there is no space between the Suggested fix: Add a space between the 2. Unexpected error in test: Core Tests (go_core_ccip_deployment_tests)Source of Error:deploy_forwarder_test.go:116:
Error Trace: /home/runner/work/chainlink/chainlink/deployment/keystone/changeset/deploy_forwarder_test.go:116
Error: Received unexpected error:
expected MCMS operation to be non-nil
Test: TestConfigureForwarders/with_mcms/nChains=1 Why: The test Suggested fix: Investigate the test setup and the conditions under which the MCMS operation is expected to be non-nil. Ensure that all necessary preconditions and configurations are met before the test is executed. 3. Unexpected error in test: Core Tests (go_core_ccip_deployment_tests)Source of Error:deploy_forwarder_test.go:116:
Error Trace: /home/runner/work/chainlink/chainlink/deployment/keystone/changeset/deploy_forwarder_test.go:116
Error: Received unexpected error:
expected MCMS operation to be non-nil
Test: TestConfigureForwarders/with_mcms/nChains=3 Why: The test Suggested fix: Similar to the previous error, investigate the test setup and the conditions under which the MCMS operation is expected to be non-nil. Ensure that all necessary preconditions and configurations are met before the test is executed. AER Report: Operator UI CI ran successfully ✅ |
|
CRE-227
refactors internal implementation to reduce dependencies. last refactor blocking cre-226
Requires
Supports