Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
linter 1.60 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nurzhan-saktaganov committed Sep 3, 2024
1 parent b0ba924 commit 62fed9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func (r *Router) RouterMapCallRWImpl(
return nil, err
}

if totalBucketCount != int32(r.cfg.TotalBucketCount) {
if uint64(totalBucketCount) != r.cfg.TotalBucketCount {
return nil, fmt.Errorf("unknown bucket counts %d", totalBucketCount)
}

Expand Down

0 comments on commit 62fed9b

Please sign in to comment.