Skip to content

Commit b78329c

Browse files
committed
chore(cubestore): make trace_id and span_id strings.
1 parent ce68576 commit b78329c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rust/cubestore/cubestore/src/cluster/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ pub enum WorkerMessage {
215215
SerializedPlan,
216216
HashMap<String, String>,
217217
HashMap<u64, Vec<SerializedRecordBatchStream>>,
218-
Option<(u64, u64)>,
218+
Option<(String, String)>,
219219
),
220220
}
221221

rust/cubestore/cubestore/src/telemetry/tracing.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ use crate::CubeError;
33
use std::sync::Arc;
44

55
pub trait TracingHelper: DIService + Send + Sync {
6-
fn trace_and_span_id(&self) -> Option<(u64, u64)>;
6+
fn trace_and_span_id(&self) -> Option<(String, String)>;
77
}
88

99
pub struct TracingHelperImpl;
1010

1111
impl TracingHelper for TracingHelperImpl {
12-
fn trace_and_span_id(&self) -> Option<(u64, u64)> {
12+
fn trace_and_span_id(&self) -> Option<(String, String)> {
1313
None
1414
}
1515
}

0 commit comments

Comments
 (0)