Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork436
settings: addnetwork.connection_timeout andnetwork.cloud_api.skip_board_detection_calls#2770
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
settings: addnetwork.connection_timeout andnetwork.cloud_api.skip_board_detection_calls#2770
Uh oh!
There was an error while loading.Please reload this page.
Conversation
codecovbot commentedNov 28, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@## master #2770 +/- ##==========================================+ Coverage 67.52% 67.55% +0.02%========================================== Files 237 237 Lines 22362 22373 +11 ==========================================+ Hits 15101 15115 +14+ Misses 6068 6066 -2+ Partials 1193 1192 -1
Flags with carried forward coverage won't be shown.Click here to find out more. ☔ View full report in Codecov by Sentry. |
4b44476 to665d54dCompare665d54d to2278bbcComparegithub-actionsbot commentedDec 10, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
The latest Buf updates on your PR. Results from workflowCheck Protocol Buffers / check (pull_request).
|
2d4aee1 to6df6b17Compare6df6b17 toab8c357Compare6d1db1e toff3735fCompareconnection_timeoutnetwork.connection_timeout andnetwork.cloud_api.skip_board_detection_calls5968346 intomasterUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Please check if the PR fulfills these requirements
Seehow to contribute
before creating one)
our contributing guidelines
UPGRADING.mdhas been updated with a migration guide (for breaking changes)configuration.schema.jsonupdated if new parameters are added.What kind of change does this PR introduce?
Introduces:
connection_timeoutsetting, which our HTTP client will use as a timeout durationcloud_api.skip_board_detection_callsboolean setting that (iftrue) will skip the API call required to identify the board (if no installed platforms match the board).What is the current behavior?
The current behavior uses the default timeout which is 0. It means that it will wait indefinitely.
What is the new behavior?
The new behavior will respect user settings for the connection timeout. The default will be the same, but in case the user provides the
network.connection_timeout: 5it means that the HTTP client will exit with an error if the connection is taking longer than 5 seconds.There is also a new configuration value to disable querying the Cloud API to identify a board.
Does this PR introduce a breaking change, and istitled accordingly?
Other information