aboutsummaryrefslogtreecommitdiff
path: root/src/endpoint.rs
diff options
context:
space:
mode:
authortrinity-1686a <trinity@deuxfleurs.fr>2022-06-19 17:44:07 +0200
committertrinity-1686a <trinity@deuxfleurs.fr>2022-06-19 17:47:41 +0200
commit5d7541e13a4c3640f0dc8aead595b51775fc0ac8 (patch)
treeacd4a068050d10cfaea27cb1ba08e03b9233e31d /src/endpoint.rs
parent4745e7c4ba5665d3303ae567087781778cec9c34 (diff)
downloadnetapp-5d7541e13a4c3640f0dc8aead595b51775fc0ac8.tar.gz
netapp-5d7541e13a4c3640f0dc8aead595b51775fc0ac8.zip
wait for any ready stream instead of the highest priority one
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 c25365a..c430d4e 100644
--- a/src/endpoint.rs
+++ b/src/endpoint.rs
@@ -42,7 +42,7 @@ where
(self.clone(), None)
}
- async fn deserialize_msg(ser_self: Self::SerializableSelf, stream: AssociatedStream) -> Self {
+ async fn deserialize_msg(ser_self: Self::SerializableSelf, _stream: AssociatedStream) -> Self {
// TODO verify no stream
ser_self
}