We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f6b58 commit a33461cCopy full SHA for a33461c
opentelemetry-sdk/CHANGELOG.md
@@ -14,7 +14,7 @@
14
[`opentelemetry-aws`](https://crates.io/crates/opentelemetry-aws), version
15
0.10.0 or newer.
16
- Performance Improvement - Counter/UpDownCounter instruments internally use
17
- `RwLock` instead of `Muex` to reduce contention.
+ `RwLock` instead of `Mutex` to reduce contention.
18
19
- **Breaking** [1726](https://github.com/open-telemetry/opentelemetry-rust/pull/1726)
20
Update `LogProcessor::emit() method to take mutable reference to LogData. This is breaking
opentelemetry-sdk/src/metrics/internal/sum.rs
@@ -1,4 +1,3 @@
1
-// use std::f32::consts::E;
2
use std::sync::atomic::{AtomicBool, Ordering};
3
use std::vec;
4
use std::{
0 commit comments