diff options
author | trinity-1686a <trinity@deuxfleurs.fr> | 2022-06-19 17:44:07 +0200 |
---|---|---|
committer | trinity-1686a <trinity@deuxfleurs.fr> | 2022-06-19 17:47:41 +0200 |
commit | 5d7541e13a4c3640f0dc8aead595b51775fc0ac8 (patch) | |
tree | acd4a068050d10cfaea27cb1ba08e03b9233e31d /src/endpoint.rs | |
parent | 4745e7c4ba5665d3303ae567087781778cec9c34 (diff) | |
download | netapp-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.rs | 2 |
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 } |