Skip to content

Commit 02e3a07

Browse files
committed
Fix bug in client where it didn't finish
1 parent f7b736f commit 02e3a07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/client/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func main() {
106106
go asyncWrite(tracer, request.Block, request.NewValue, routerRPCClient, writeResponseChannel)
107107
}
108108
}
109-
for i := 0; i <= readOperations+writeOperations; i++ {
109+
for i := 0; i < readOperations+writeOperations; i++ {
110110
select {
111111
case readResponse := <-readResponseChannel:
112112
if readResponse.err != nil {

0 commit comments

Comments
 (0)