We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff8697f commit 73d35bcCopy full SHA for 73d35bc
relay-event-schema/src/protocol/contexts/trace.rs
@@ -172,7 +172,7 @@ relay_common::impl_str_serde!(SpanId, "a span identifier");
172
impl SpanId {
173
pub fn random() -> Self {
174
let value: u64 = rand::random_range(1..=u64::MAX);
175
- Self(value.to_ne_bytes())
+ Self(value.to_be_bytes())
176
}
177
178
0 commit comments