[skip e2e] Fix component name for IndexCoordComponent comment (#15138)

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
pull/15431/head
congqixia 2022-01-29 22:39:44 +08:00 committed by GitHub
parent fffcef00d1
commit b4bfe58fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

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