[skip ci]Fix golint for SetIndexCoord (#13198)

Signed-off-by: xige-16 <xi.ge@zilliz.com>
pull/13213/head
xige-16 2021-12-10 21:54:01 +08:00 committed by GitHub
parent 9a8072a8c0
commit f85c1e8f1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ func (qc *QueryCoord) SetDataCoord(dataCoord types.DataCoord) error {
func (qc *QueryCoord) SetIndexCoord(indexCoord types.IndexCoord) error {
if indexCoord == nil {
return errors.New("null index coordinator interface")
return errors.New("null IndexCoord interface")
}
qc.indexCoordClient = indexCoord