Temp fix: Skip embedding server ready check in DriveMonitor KB indexing
All checks were successful
BotServer CI/CD / build (push) Successful in 3m19s
All checks were successful
BotServer CI/CD / build (push) Successful in 3m19s
This commit is contained in:
parent
be3e4c4e54
commit
2bafd57046
1 changed files with 5 additions and 4 deletions
|
|
@ -1269,10 +1269,11 @@ impl DriveMonitor {
|
||||||
|
|
||||||
#[cfg(any(feature = "research", feature = "llm"))]
|
#[cfg(any(feature = "research", feature = "llm"))]
|
||||||
{
|
{
|
||||||
if !is_embedding_server_ready() {
|
// TEMP FIX: Skip embedding server check - embedding works but health check fails
|
||||||
trace!("Embedding server not ready, deferring KB indexing for {}", kb_folder_path.display());
|
// if !is_embedding_server_ready() {
|
||||||
continue;
|
// trace!("Embedding server not ready, deferring KB indexing for {}", kb_folder_path.display());
|
||||||
}
|
// continue;
|
||||||
|
// }
|
||||||
|
|
||||||
// Create a unique key for this KB folder to track indexing state
|
// Create a unique key for this KB folder to track indexing state
|
||||||
let kb_key = format!("{}_{}", bot_name, kb_name);
|
let kb_key = format!("{}_{}", bot_name, kb_name);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue