Skip to content

Commit

Permalink
Fix method for unimplemented test
Browse files Browse the repository at this point in the history
  • Loading branch information
zalegrala committed Jul 13, 2023
1 parent d1ab657 commit 7e423c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tempodb/backend/local/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ func (rw *Backend) List(_ context.Context, keypath backend.KeyPath) ([]string, e

// ListBlocks implements backend.Reader
func (rw *Backend) ListBlocks(ctx context.Context, keypath backend.KeyPath) ([]uuid.UUID, []uuid.UUID, error) {
// TODO: implement
return nil, nil, nil
return nil, nil, fmt.Errorf("not implemented")

Check failure on line 125 in tempodb/backend/local/local.go

View workflow job for this annotation

GitHub Actions / Test packages - pkg

undefined: fmt

Check failure on line 125 in tempodb/backend/local/local.go

View workflow job for this annotation

GitHub Actions / Test integration e2e suite

undefined: fmt

Check failure on line 125 in tempodb/backend/local/local.go

View workflow job for this annotation

GitHub Actions / Test packages - tempodb

undefined: fmt

Check failure on line 125 in tempodb/backend/local/local.go

View workflow job for this annotation

GitHub Actions / Test packages - tempodb/wal

undefined: fmt

Check failure on line 125 in tempodb/backend/local/local.go

View workflow job for this annotation

GitHub Actions / Test packages - tempodb/wal

undefined: fmt

Check failure on line 125 in tempodb/backend/local/local.go

View workflow job for this annotation

GitHub Actions / Benchmark

undefined: fmt

Check failure on line 125 in tempodb/backend/local/local.go

View workflow job for this annotation

GitHub Actions / Build

undefined: fmt
}

// Read implements backend.Reader
Expand Down

0 comments on commit 7e423c0

Please sign in to comment.