aboutsummaryrefslogtreecommitdiff
path: root/src/endpoint.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/endpoint.rs')
-rw-r--r--src/endpoint.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/endpoint.rs b/src/endpoint.rs
index bb5399c..42e9a98 100644
--- a/src/endpoint.rs
+++ b/src/endpoint.rs
@@ -114,7 +114,7 @@ where
match conn {
None => Err(Error::Message(format!(
"Not connected: {}",
- hex::encode(target)
+ hex::encode(&target[..8])
))),
Some(c) => c.call(req, self.path.as_str(), prio).await,
}