From a4e0ee29609d6f920c3433a7ea1d9732c2556a34 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 14 Jan 2026 09:04:12 +0100 Subject: [PATCH] Formatting --- runtime/src/qdrant.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/qdrant.rs b/runtime/src/qdrant.rs index 0ae5a2ee..dc0ea153 100644 --- a/runtime/src/qdrant.rs +++ b/runtime/src/qdrant.rs @@ -59,7 +59,7 @@ pub fn qdrant_port(_token: APIToken) -> Json { pub fn start_qdrant_server() { let base_path = DATA_DIRECTORY.get().unwrap(); - let (cert_path, key_path) =create_temp_tls_files(Path::new(base_path).join("databases").join("qdrant")).unwrap(); + let (cert_path, key_path) = create_temp_tls_files(Path::new(base_path).join("databases").join("qdrant")).unwrap(); let storage_path = Path::new(base_path).join("databases").join("qdrant").join("storage").to_str().unwrap().to_string(); let snapshot_path = Path::new(base_path).join("databases").join("qdrant").join("snapshots").to_str().unwrap().to_string();