-
Notifications
You must be signed in to change notification settings - Fork 445
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
Feat/remove timeout from detectors #2332
base: main
Are you sure you want to change the base?
Feat/remove timeout from detectors #2332
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2332 +/- ##
=======================================
- Coverage 79.5% 79.5% -0.1%
=======================================
Files 123 123
Lines 21479 21473 -6
=======================================
- Hits 17084 17078 -6
Misses 4395 4395 ☔ View full report in Codecov by Sentry. |
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.
Blocking accidental merge until #2332 (comment)
@@ -13,6 +13,7 @@ | |||
Released 2024-Nov-27 | |||
|
|||
- **DEPRECATED**: | |||
- `ResourceDetector.detect()` no longer supports timeout option. |
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.
need to move this to be under vnext.
@@ -155,7 +155,7 @@ impl<'a> UnsafeSlice<'a> { | |||
#[inline(always)] | |||
unsafe fn increment(&self, i: usize) { | |||
let value = self.slice[i].get(); | |||
(*value).count = (*value).count + 1; | |||
(*value).count += 1; |
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: Please remove unrelated changes.
related: #2320, #2322
Changes
Remove the
ResourceDetector.detect()
timeout option.Merge requirement checklist
CHANGELOG.md
files updated for non-trivial, user-facing changes