[skip e2e]Fix log mistake: WatchDmChannels -> WatchDeltaChannels (#17643)

Signed-off-by: wayblink <anyang.wang@zilliz.com>
pull/17646/head
wayblink 2022-06-20 15:10:12 +08:00 committed by GitHub
parent 12b3a29db8
commit f2bd910df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ func (qn *queryNode) watchDmChannels(ctx context.Context, in *querypb.WatchDmCha
func (qn *queryNode) watchDeltaChannels(ctx context.Context, in *querypb.WatchDeltaChannelsRequest) error {
if !qn.isOnline() {
return errors.New("WatchDmChannels: queryNode is offline")
return errors.New("WatchDeltaChannels: queryNode is offline")
}
status, err := qn.client.WatchDeltaChannels(qn.ctx, in)