We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 664cba8 commit be5d9a6Copy full SHA for be5d9a6
1 file changed
src/server/mod.rs
@@ -9,7 +9,7 @@ use std::sync::Arc;
9
10
use crate::apps::hnsw::coordinator::HNSWIndexService;
11
use crate::apps::hnsw::partition::service::HNSW_PARTITION_SERVICE_ID;
12
-use crate::apps::hnsw::HNSWPartitionService;
+use crate::apps::hnsw::{HNSWPartitionService, VectorIndexer};
13
use crate::graph::GraphEngine;
14
use crate::job::logger::JobLogger;
15
@@ -107,6 +107,7 @@ impl MorpheusServer {
107
.await?;
108
let service_ref = Arc::new(service);
109
self.neb_server.rpc.register_service(&service_ref).await;
110
+ VectorIndexer::new_and_set_core(&self.neb_server).await;
111
Ok(service_ref)
112
}
113
0 commit comments