From 5c2302d7111a4fea7f577d4907c25e0f2e08e2a2 Mon Sep 17 00:00:00 2001 From: Bingyi Sun Date: Wed, 15 Dec 2021 16:07:10 +0800 Subject: [PATCH] Improve compaction log (#13394) Signed-off-by: sunby Co-authored-by: sunby --- internal/datacoord/services.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/datacoord/services.go b/internal/datacoord/services.go index 0c4e7fa211..6b4291ff4b 100644 --- a/internal/datacoord/services.go +++ b/internal/datacoord/services.go @@ -793,7 +793,7 @@ func (s *Server) ManualCompaction(ctx context.Context, req *milvuspb.ManualCompa // GetCompactionState gets the state of a compaction func (s *Server) GetCompactionState(ctx context.Context, req *milvuspb.GetCompactionStateRequest) (*milvuspb.GetCompactionStateResponse, error) { - log.Debug("receive get compaction state request", zap.Int64("compactionID", req.GetCompactionID())) + log.Debug("received get compaction state request", zap.Int64("compactionID", req.GetCompactionID())) resp := &milvuspb.GetCompactionStateResponse{ Status: &commonpb.Status{ ErrorCode: commonpb.ErrorCode_UnexpectedError,