diff --git a/northbound/server/core.go b/northbound/server/core.go index b72fe1d017ae6c9939f5dcfd880b2d22be0505cb..d269fad776b087d52769f993a83328e7ee193329 100644 --- a/northbound/server/core.go +++ b/northbound/server/core.go @@ -101,11 +101,11 @@ func (s core) DeletePnd(ctx context.Context, request *pb.DeletePndRequest) (*pb. start := metrics.StartHook(labels, grpcRequestsTotal) defer metrics.FinishHook(labels, start, grpcRequestDurationSecondsTotal, grpcRequestDurationSeconds) - pndId, err := uuid.Parse(request.Pid) + pndID, err := uuid.Parse(request.Pid) if err != nil { return nil, handleRPCError(labels, err) } - pndc.Delete(pndId) + pndc.Delete(pndID) return &pb.DeletePndResponse{ Timestamp: time.Now().UnixNano(),