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 dca7d0d commit 60755fcCopy full SHA for 60755fc
opentelemetry-otlp/src/exporter/http/mod.rs
@@ -33,7 +33,11 @@ mod logs;
33
#[cfg(feature = "trace")]
34
mod trace;
35
36
-#[cfg(feature = "hyper-client")]
+#[cfg(all(
37
+ not(feature = "reqwest-client"),
38
+ not(feature = "reqwest-blocking-client"),
39
+ feature = "hyper-client"
40
+))]
41
use opentelemetry_http::hyper::HyperClient;
42
43
/// Configuration of the http transport
0 commit comments