From a42ba77224606c8eeae093a42398017115e3f4e1 Mon Sep 17 00:00:00 2001 From: Arnaud Gourlay Date: Thu, 9 Jan 2025 16:36:58 +0100 Subject: [PATCH] fmt --- src/qdrant_client/mod.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/qdrant_client/mod.rs b/src/qdrant_client/mod.rs index 3894f4c..550fb00 100644 --- a/src/qdrant_client/mod.rs +++ b/src/qdrant_client/mod.rs @@ -106,7 +106,10 @@ impl Qdrant { config.connect_timeout, config.keep_alive_while_idle, ); - let client = Self { channel, config: config.clone() }; + let client = Self { + channel, + config: config.clone(), + }; // We're in sync context, spawn temporary runtime in thread to do async health check let server_version = thread::scope(|s| {