Skip to content

Commit

Permalink
groupcache: fix unhandled error warning
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Mery <[email protected]>
  • Loading branch information
amery committed Jan 13, 2024
1 parent cb67458 commit dd2b84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/groupcache/groupcache.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func (g *Group) Get(ctx context.Context, key string, sink cache.Sink) error {

// Remove removes an entry from the Group
func (g *Group) Remove(ctx context.Context, key string) {
g.g.Remove(ctx, key)
_ = g.g.Remove(ctx, key)
}

// Stats returns stats about the Group
Expand Down

0 comments on commit dd2b84f

Please sign in to comment.