We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfca07c commit 61aaeebCopy full SHA for 61aaeeb
1 file changed
internal/service/plugin_common/plugin_common_service.go
@@ -183,11 +183,7 @@ func (ps *PluginCommonService) initPluginData() {
183
})
184
}
185
186
- // register syncers for search and vector search plugins on startup
187
- _ = plugin.CallSearch(func(search plugin.Search) error {
188
- search.RegisterSyncer(context.Background(), search_sync.NewPluginSyncer(ps.data))
189
- return nil
190
- })
+ // register syncer for vector search plugins on startup
191
_ = plugin.CallVectorSearch(func(vs plugin.VectorSearch) error {
192
vs.RegisterSyncer(context.Background(), vector_search_sync.NewPluginSyncer(ps.data))
193
return nil
0 commit comments