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 c84f7c7 commit 40c9600Copy full SHA for 40c9600
libdd-profiling-ffi/src/exporter.rs
@@ -80,7 +80,8 @@ unsafe fn try_to_url(slice: CharSlice) -> anyhow::Result<hyper::Uri> {
80
}
81
#[cfg(windows)]
82
if let Some(path) = str.strip_prefix("windows:") {
83
- return Ok(exporter::named_pipe_path_to_uri(path.as_ref())?);
+ use libdd_common::connector::named_pipe::named_pipe_path_to_uri;
84
+ return Ok(named_pipe_path_to_uri(path.as_ref())?);
85
86
Ok(hyper::Uri::from_str(str)?)
87
0 commit comments