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 0640933 commit 1106b0fCopy full SHA for 1106b0f
opentelemetry/src/trace/span_context.rs
@@ -26,7 +26,7 @@ impl TraceState {
26
return false;
27
}
28
29
- let allowed_special = |b: u8| (b == b'_' || b == b'-' || b == b'*' || b == b'/');
+ let allowed_special = |b: u8| b == b'_' || b == b'-' || b == b'*' || b == b'/';
30
let mut vendor_start = None;
31
for (i, &b) in key.as_bytes().iter().enumerate() {
32
if !(b.is_ascii_lowercase() || b.is_ascii_digit() || allowed_special(b) || b == b'@') {
0 commit comments