We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15fc3c8 commit 02478fdCopy full SHA for 02478fd
opentelemetry-sdk/src/metrics/periodic_reader.rs
@@ -424,9 +424,9 @@ impl PeriodicReaderInner {
424
Err(MetricError::Other("Failed to shutdown".into()))
425
}
426
427
- Err(mpsc::RecvTimeoutError::Timeout) => {
428
- Err(MetricError::Other("Failed to shutdown due to Timeout".into()))
429
- }
+ Err(mpsc::RecvTimeoutError::Timeout) => Err(MetricError::Other(
+ "Failed to shutdown due to Timeout".into(),
+ )),
430
Err(mpsc::RecvTimeoutError::Disconnected) => {
431
432
0 commit comments