From f2bd910df5d703b3b854cb6b4bcb089f3f068654 Mon Sep 17 00:00:00 2001 From: wayblink Date: Mon, 20 Jun 2022 15:10:12 +0800 Subject: [PATCH] [skip e2e]Fix log mistake: WatchDmChannels -> WatchDeltaChannels (#17643) Signed-off-by: wayblink --- internal/querycoord/querynode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/querycoord/querynode.go b/internal/querycoord/querynode.go index 7389958abc..ff04daa8bb 100644 --- a/internal/querycoord/querynode.go +++ b/internal/querycoord/querynode.go @@ -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)