[skip e2e] Modify log text according to naming conventions (#13833)

Signed-off-by: guoxiangzhou <xiangzhou.guo@zilliz.com>
pull/13870/head
guoxiangzhou 2021-12-21 15:15:02 +08:00 committed by GitHub
parent 0011f39530
commit 5e034d7879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -148,7 +148,7 @@ func (node *Proxy) Init() error {
log.Debug("Proxy wait for DataCoord ready")
err := funcutil.WaitForComponentHealthy(node.ctx, node.dataCoord, "DataCoord", 1000000, time.Millisecond*200)
if err != nil {
log.Debug("Proxy wait for dataCoord ready failed", zap.Error(err))
log.Debug("Proxy wait for DataCoord ready failed", zap.Error(err))
return err
}
log.Debug("Proxy DataCoord is ready")
@ -156,13 +156,13 @@ func (node *Proxy) Init() error {
// wait for queryCoord state changed to Healthy
if node.queryCoord != nil {
log.Debug("Proxy wait for queryCoord ready")
log.Debug("Proxy wait for QueryCoord ready")
err := funcutil.WaitForComponentHealthy(node.ctx, node.queryCoord, "QueryCoord", 1000000, time.Millisecond*200)
if err != nil {
log.Debug("Proxy wait for queryCoord ready failed", zap.Error(err))
log.Debug("Proxy wait for QueryCoord ready failed", zap.Error(err))
return err
}
log.Debug("Proxy queryCoord is ready")
log.Debug("Proxy QueryCoord is ready")
}
// wait for indexcoord state changed to Healthy