Skip to content

Commit a33461c

Browse files
committed
pr comments
1 parent 34f6b58 commit a33461c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

opentelemetry-sdk/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[`opentelemetry-aws`](https://crates.io/crates/opentelemetry-aws), version
1515
0.10.0 or newer.
1616
- Performance Improvement - Counter/UpDownCounter instruments internally use
17-
`RwLock` instead of `Muex` to reduce contention.
17+
`RwLock` instead of `Mutex` to reduce contention.
1818

1919
- **Breaking** [1726](https://github.com/open-telemetry/opentelemetry-rust/pull/1726)
2020
Update `LogProcessor::emit() method to take mutable reference to LogData. This is breaking

opentelemetry-sdk/src/metrics/internal/sum.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// use std::f32::consts::E;
21
use std::sync::atomic::{AtomicBool, Ordering};
32
use std::vec;
43
use std::{

0 commit comments

Comments
 (0)