Skip to content

Commit

Permalink
fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgajg1134 committed Sep 23, 2024
1 parent a7f66f4 commit f10583b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data-pipeline/src/trace_exporter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ use datadog_trace_utils::tracer_payload;
use datadog_trace_utils::tracer_payload::TraceCollection;
use ddcommon::tag::Tag;
use ddcommon::{connector, tag, Endpoint};
use dogstatsd_client::{new_flusher, DogStatsDAction, Client};
use dogstatsd_client::{new_flusher, Client, DogStatsDAction};
use either::Either;
use hyper::http::uri::PathAndQuery;
use hyper::{Body, Client, Method, Uri};
use hyper::{Body, Method, Uri};
use log::error;
use std::sync::{Arc, Mutex};
use std::time::Duration;
Expand Down Expand Up @@ -279,7 +279,7 @@ impl TraceExporter {
.body(Body::from(Bytes::copy_from_slice(data)))
.unwrap();

match Client::builder()
match hyper::Client::builder()
.build(connector::Connector::default())
.request(req)
.await
Expand Down

0 comments on commit f10583b

Please sign in to comment.