[skip e2e]Fix error log output format in segment_replica.go (#13676)

Signed-off-by: JackLCL <chenglong.li@zilliz.com>
This commit is contained in:
JackLCL 2021-12-19 12:32:42 +08:00 committed by GitHub
parent b6cca25d1f
commit 20c956b675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -600,7 +600,7 @@ func (replica *SegmentReplica) getSegmentStatisticsUpdates(segID UniqueID) (*dat
return updates, nil
}
return nil, fmt.Errorf("Error, there's no segment %v", segID)
return nil, fmt.Errorf("error, there's no segment %v", segID)
}
// --- collection ---