-
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
fix(gateway/connector): await gateway connection before request #15686
Conversation
I see you updated files related to
|
AER Report: CI Coreaer_workflow , commit , Detect Changes , Clean Go Tidy & Generate , Scheduled Run Frequency , Flakeguard Root Project / Get Tests To Run , Core Tests (go_core_tests) , Core Tests (go_core_tests_integration) , lint , Core Tests (go_core_ccip_deployment_tests) , Flakeguard Deployment Project , Core Tests (go_core_race_tests) , Core Tests (go_core_fuzz) , Flakeguard Root Project / Run Tests (github.com/smartcontractkit/chainlink/v2/core/capabilities/compute, ubuntu-latest) , Flakeguard Root Project / Run Tests (github.com/smartcontractkit/chainlink/v2/core/capabilities/webapi, ubuntu-latest) , Flakeguard Root Project / Run Tests (github.com/smartcontractkit/chainlink/v2/core/capabilities/webapi/target, ubuntu-latest) , Flakeguard Root Project / Run Tests (github.com/smartcontractkit/chainlink/v2/core/services/workflows/syncer, ubuntu-latest) , Flakey Test Detection , SonarQube Scan , Flakeguard Root Project / Report 1. Error parsing test results due to panic:[A 1 <= 10 words sentence that describes the error]:[Run tests with flakeguard] Source of Error:
Why: The error occurred because a log entry was made in a goroutine after the test Suggested fix: Ensure that all logging and other operations in goroutines are completed before the test function returns. This can be done by using synchronization mechanisms like AER Report: Operator UI CI ran successfully ✅ |
2a47585
2affaf8
2a47585
to
2affaf8
Compare
2affaf8
to
6dbacad
Compare
37a0210
6dbacad
to
37a0210
Compare
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.
ASAP
this PR enables a gateway connector to await a connection before making a request. the
gatewayState
now carries a channel that when closed signals that a connection has been made successfully.Requires
Supports