Skip to content

Commit

Permalink
Removed unwanted println
Browse files Browse the repository at this point in the history
  • Loading branch information
manojVivek committed Dec 12, 2024
1 parent 1106637 commit 5e5e55f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pkg/query/columnquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,6 @@ func (q *ColumnQueryAPI) Query(ctx context.Context, req *pb.QueryRequest) (*pb.Q
groupBy = append(groupBy, profile.ColumnTimestamp, profile.ColumnDuration)
}

fmt.Println("groupBy", groupBy)

groupByLabels := make([]string, 0, len(groupBy))
for _, f := range groupBy {
if strings.HasPrefix(f, FlamegraphFieldLabels+".") {
Expand All @@ -264,8 +262,6 @@ func (q *ColumnQueryAPI) Query(ctx context.Context, req *pb.QueryRequest) (*pb.Q
return nil, status.Errorf(codes.InvalidArgument, "invalid group by field: %s", f)
}

fmt.Println("groupByLabels", groupByLabels)

switch req.Mode {
case pb.QueryRequest_MODE_SINGLE_UNSPECIFIED:
p, err = q.selectSingle(ctx, req.GetSingle(), isInvert)
Expand Down

0 comments on commit 5e5e55f

Please sign in to comment.