Skip to content

Commit

Permalink
fix some rebase stuff
Browse files Browse the repository at this point in the history
Signed-off-by: Ruben Vargas <ruben.vp8510@gmail.com>
  • Loading branch information
rubenvp8510 committed Nov 10, 2023
1 parent c5e6796 commit 49e072d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/querier/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ func (q *Querier) internalSearchBlock(ctx context.Context, req *tempopb.SearchBl
func (q *Querier) internalTagSearchBlock(ctx context.Context, req *tempopb.SearchTagsBlockRequest) (*tempopb.SearchTagsResponse, error) {
tenantID, err := user.ExtractOrgID(ctx)
if err != nil {
return nil, errors.Wrap(err, "error extracting org id in Querier.BackendSearch")
return nil, fmt.Errorf("error extracting org id in Querier.BackendSearch: %w", err)
}

blockID, err := uuid.Parse(req.BlockID)
Expand Down Expand Up @@ -854,7 +854,7 @@ func (q *Querier) internalTagSearchBlock(ctx context.Context, req *tempopb.Searc
func (q *Querier) internalTagValueSearchBlock(ctx context.Context, req *tempopb.SearchTagsValuesBlockRequest) (*tempopb.SearchTagValuesResponse, error) {
tenantID, err := user.ExtractOrgID(ctx)
if err != nil {
return nil, errors.Wrap(err, "error extracting org id in Querier.BackendSearch")
return nil, fmt.Errorf("error extracting org id in Querier.BackendSearch: %w", err)
}

blockID, err := uuid.Parse(req.BlockID)
Expand Down

0 comments on commit 49e072d

Please sign in to comment.