From dd134e02d93da857aab53e80f0a69f1a6ae65c60 Mon Sep 17 00:00:00 2001 From: congqixia Date: Tue, 30 Nov 2021 00:03:43 +0800 Subject: [PATCH] [skip ci] Add comment in types.go for DataCoord.GetCompactionStateWithPlans (#12422) Signed-off-by: Congqi Xia --- internal/types/types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/types/types.go b/internal/types/types.go index af20955f5..18dc5ac80 100644 --- a/internal/types/types.go +++ b/internal/types/types.go @@ -227,6 +227,7 @@ type DataCoord interface { ManualCompaction(ctx context.Context, req *milvuspb.ManualCompactionRequest) (*milvuspb.ManualCompactionResponse, error) // GetCompactionState gets the state of a compaction GetCompactionState(ctx context.Context, req *milvuspb.GetCompactionStateRequest) (*milvuspb.GetCompactionStateResponse, error) + // GetCompactionStateWithPlans get the state of requested plan id GetCompactionStateWithPlans(ctx context.Context, req *milvuspb.GetCompactionPlansRequest) (*milvuspb.GetCompactionPlansResponse, error) // WatchChannels notifies DataCoord to watch vchannels of a collection -- GitLab