-
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
Correct Read Error Format #15223
base: develop
Are you sure you want to change the base?
Correct Read Error Format #15223
Conversation
I see you updated files related to
|
if e.Batch { | ||
builder.WriteString(" batch;") | ||
} | ||
|
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.
does it make sense to have an enum for each type of CR read call?
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.
I'm not sure what you mean. What information would the enum capture?
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.
batch/queryKey/GetLatestValue
AER Report: CI Coreaer_workflow , commit , Detect Changes , Clean Go Tidy & Generate , Scheduled Run Frequency , Find New Flaky Tests In Chainlink Project / Get Tests To Run , lint , Core Tests (go_core_tests) , Core Tests (go_core_tests_integration) , Core Tests (go_core_ccip_deployment_tests) , Core Tests (go_core_race_tests) , Core Tests (go_core_fuzz) , Find New Flaky Tests In Deployment Project , Find New Flaky Tests In Chainlink Project / Run Tests , Find New Flaky Tests In Chainlink Project / Report , Flakey Test Detection , SonarQube Scan 1. Type name stutters:[A 1 <= 10 words sentence that describes the error]:[job id where the error happened] Source of Error: Source of Error:
Why: The linter Suggested fix: Rename the 2. Issues found:[A 1 <= 10 words sentence that describes the error]:[job id where the error happened] Source of Error: Source of Error:
Why: The linter found issues in the codebase that need to be addressed. Suggested fix: Review the linter output and fix the reported issues. 3. Test failures:[A 1 <= 10 words sentence that describes the error]:[job id where the error happened] Source of Error: Source of Error:
Why: The test suite encountered one or more test failures, causing the job to exit with a non-zero status. Suggested fix: Investigate the test logs to identify the failing tests and address the underlying issues causing the failures. AER Report: Operator UI CI ran successfully ✅ |
Changed error text to be `read error` instead of `rpc error` to limit confusion. Batch flag to string corrected to show `true|false` instead of bool type.
36bbebc
to
9b8473d
Compare
Changed error text to be
read error
instead ofrpc error
to limit confusion. Batch flag to string corrected to showtrue|false
instead of bool type.