Skip to content

Commit

Permalink
Fix benches
Browse files Browse the repository at this point in the history
  • Loading branch information
jtescher committed Jun 7, 2021
1 parent b476f9e commit 4929f7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opentelemetry/benches/batch_span_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use opentelemetry::runtime::Tokio;
use opentelemetry::sdk::export::trace::SpanData;
use opentelemetry::sdk::trace::{BatchSpanProcessor, EvictedHashMap, EvictedQueue, SpanProcessor};
use opentelemetry::trace::{
NoopSpanExporter, SpanContext, SpanId, SpanKind, StatusCode, TraceId, TraceState,
NoopSpanExporter, SpanContext, SpanId, SpanKind, StatusCode, TraceFlags, TraceId, TraceState,
};
use std::sync::Arc;
use std::time::SystemTime;
Expand All @@ -16,7 +16,7 @@ fn get_span_data() -> Vec<SpanData> {
span_context: SpanContext::new(
TraceId::from_u128(12),
SpanId::from_u64(12),
0,
TraceFlags::default(),
false,
TraceState::default(),
),
Expand Down

0 comments on commit 4929f7f

Please sign in to comment.