[skip e2e] Fix IndexNodeComponent comment name (#15091)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
congqixia 2022-01-10 18:51:35 +08:00 committed by GitHub
parent b2cb15798d
commit c21b40d693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -284,10 +284,10 @@ type IndexNode interface {
type IndexNodeComponent interface {
IndexNode
// SetEtcdClient set etcd client for QueryCoord
// SetEtcdClient set etcd client for IndexNodeComponent
SetEtcdClient(etcdClient *clientv3.Client)
// UpdateStateCode updates state code for QueryCoord
// UpdateStateCode updates state code for IndexNodeComponent
// `stateCode` is current statement of this QueryCoord, indicating whether it's healthy.
UpdateStateCode(stateCode internalpb.StateCode)
}