Skip to content

Commit

Permalink
Fix compiler errors
Browse files Browse the repository at this point in the history
Signed-off-by: Kemal Akkoyun <[email protected]>
  • Loading branch information
kakkoyun committed Aug 31, 2020
1 parent 41529b1 commit b47dbb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cacheutil/memcached_server_selector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func BenchmarkMemcachedJumpHashSelector_PickServer(b *testing.B) {
b.ResetTimer()

for i := 0; i < b.N; i++ {
_, err := selector.PickServer(string(i))
_, err := selector.PickServer(fmt.Sprint(i))
if err != nil {
b.Error(err)
}
Expand Down

0 comments on commit b47dbb3

Please sign in to comment.