Fix bug for multi proxys can not update collection info

Signed-off-by: shengjh <1572099106@qq.com>
pull/4973/head^2
shengjh 2020-09-30 10:35:51 +08:00 committed by yefu.chen
parent 086d7849ec
commit 998e750468
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ Status MetaWrapper::Init() {
auto f = [&](const etcdserverpb::WatchResponse &res) {
UpdateMeta(res);
};
watcher_ = std::make_shared<milvus::master::Watcher>(etcd_addr, segment_path_, f, true);
watcher_ = std::make_shared<milvus::master::Watcher>(etcd_addr, etcd_root_path_, f, true);
return SyncMeta();
}
catch (const std::exception &e) {