From 710861239800091d90a8b51ddb5f08bb5cee82e2 Mon Sep 17 00:00:00 2001 From: godchen Date: Mon, 1 Nov 2021 16:54:07 +0800 Subject: [PATCH] [skip ci]Fix allocator typo (#10998) Signed-off-by: godchen --- internal/datacoord/allocator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/datacoord/allocator.go b/internal/datacoord/allocator.go index 1dddbd5d5..c868a48f3 100644 --- a/internal/datacoord/allocator.go +++ b/internal/datacoord/allocator.go @@ -63,7 +63,7 @@ func (alloc *rootCoordAllocator) allocTimestamp(ctx context.Context) (Timestamp, return resp.Timestamp, nil } -// allocID allocate an `UniqueID` from RootCoord, invoking AllocID grpc +// allocID allocates an `UniqueID` from RootCoord, invoking AllocID grpc func (alloc *rootCoordAllocator) allocID(ctx context.Context) (UniqueID, error) { resp, err := alloc.AllocID(ctx, &rootcoordpb.AllocIDRequest{ Base: &commonpb.MsgBase{ -- GitLab