From 01a63ebf4650dbf171584325bff63e5a7e220bf0 Mon Sep 17 00:00:00 2001 From: davegilligan Date: Tue, 26 May 2026 22:35:22 +0200 Subject: [PATCH] fix: correct Qdrant IP to 10.0.2.10 in diagnostics.php --- api/dashboard/diagnostics.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/dashboard/diagnostics.php b/api/dashboard/diagnostics.php index 79b9620..9cd18e0 100644 --- a/api/dashboard/diagnostics.php +++ b/api/dashboard/diagnostics.php @@ -58,7 +58,7 @@ try { /* Qdrant — count vectors for this client via scroll */ try { - $ch = curl_init('http://10.0.1.10:6333/collections/bnl_client_chunks/points/count'); + $ch = curl_init('http://10.0.2.10:6333/collections/bnl_client_chunks/points/count'); curl_setopt_array($ch, [ CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true,