We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c89c142 commit a42ba77Copy full SHA for a42ba77
src/qdrant_client/mod.rs
@@ -106,7 +106,10 @@ impl Qdrant {
106
config.connect_timeout,
107
config.keep_alive_while_idle,
108
);
109
- let client = Self { channel, config: config.clone() };
+ let client = Self {
110
+ channel,
111
+ config: config.clone(),
112
+ };
113
114
// We're in sync context, spawn temporary runtime in thread to do async health check
115
let server_version = thread::scope(|s| {
0 commit comments