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 f4b0f6b commit 24d5b0fCopy full SHA for 24d5b0f
foundations/src/telemetry/log/internal.rs
@@ -65,7 +65,7 @@ impl LoggerWithKvNestingTracking {
65
None // avoid further nesting
66
}
67
68
- Self::MAX_NESTING..=u32::MAX => None, // avoid further nesting
+ _ => None, // avoid further nesting
69
70
71
foundations/src/telemetry/log/retry_writer.rs
@@ -60,10 +60,7 @@ impl Write for RetryPipeWriter {
60
61
attempts += 1;
62
63
- Err(io::Error::new(
64
- io::ErrorKind::Other,
- "retry attempts exhausted",
- ))
+ Err(io::Error::other("retry attempts exhausted"))
/// Flushes the file. On *nix this does nothing.
0 commit comments