Skip to content

Commit

Permalink
Address Annanay review
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel González Lopes <danielgonzalezlopes@gmail.com>
  • Loading branch information
dgzlopes committed Feb 2, 2021
1 parent 1120303 commit 5fb82ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tempodb/backend/cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ type Client interface {
Shutdown()
}

func NewCache(nextReader backend.Reader, nextWriter backend.Writer, cache Client) (backend.Reader, backend.Writer, error) {
func NewCache(nextReader backend.Reader, nextWriter backend.Writer, client Client) (backend.Reader, backend.Writer, error) {
rw := &readerWriter{
client: cache,
client: client,
nextReader: nextReader,
nextWriter: nextWriter,
}
Expand Down

0 comments on commit 5fb82ce

Please sign in to comment.