Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chores: fix spelling errors, update build system and copyright year on LICENCE.txt files #28

Merged
merged 9 commits into from
Jan 16, 2024
Prev Previous commit
Next Next commit
groupcache: fix unhandled error warning
Signed-off-by: Alejandro Mery <[email protected]>
  • Loading branch information
amery committed Jan 13, 2024
commit dd2b84f3724ac64244aac4f2ab31d3822dc78b0c
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