mirror of https://github.com/milvus-io/milvus.git
Fix debug typos in sesion_util (#8020)
Signed-off-by: NotRyan <ryan.chan@zilliz.com> Co-authored-by: NotRyan <ryan.chan@zilliz.com>pull/8436/head
parent
7ba18a7653
commit
e3d3834243
|
@ -79,7 +79,7 @@ func NewSession(ctx context.Context, metaRoot string, etcdEndpoints []string) *S
|
|||
zap.Error(err))
|
||||
return nil
|
||||
}
|
||||
log.Debug("Sessiont connect to etcd success")
|
||||
log.Debug("Session connect to etcd success")
|
||||
return session
|
||||
}
|
||||
|
||||
|
@ -148,7 +148,7 @@ func (s *Session) getServerIDWithKey(key string, retryTimes uint) (int64, error)
|
|||
}
|
||||
|
||||
if !txnResp.Succeeded {
|
||||
log.Debug("Session Txn unsuccess", zap.String("key", key))
|
||||
log.Debug("Session Txn unsuccessful", zap.String("key", key))
|
||||
continue
|
||||
}
|
||||
log.Debug("Session get serverID success")
|
||||
|
|
Loading…
Reference in New Issue