diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-01 12:46:33 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-01 12:46:33 +0200 |
commit | 4a59b73d7bfd0f136f654e874afb5d2a9bf4df2e (patch) | |
tree | 574f03f8af36ed687a89eb295621be4610fed79c /src/client.rs | |
parent | cd203f5708907c2bf172a3c5b7c5b40e2557b2f4 (diff) | |
download | netapp-4a59b73d7bfd0f136f654e874afb5d2a9bf4df2e.tar.gz netapp-4a59b73d7bfd0f136f654e874afb5d2a9bf4df2e.zip |
Add actual support for order tag
Diffstat (limited to 'src/client.rs')
-rw-r--r-- | src/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.rs b/src/client.rs index aef7bbb..df54810 100644 --- a/src/client.rs +++ b/src/client.rs @@ -190,7 +190,7 @@ impl ClientConn { #[cfg(feature = "telemetry")] span.set_attribute(KeyValue::new("len_query_msg", req_msg_len as i64)); - query_send.send((id, prio, req_stream))?; + query_send.send((id, prio, req_order, req_stream))?; cfg_if::cfg_if! { if #[cfg(feature = "telemetry")] { |