Skip to content

Commit

Permalink
chore: fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Mar 6, 2024
1 parent 1ef9134 commit ab1c4c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abci/client/socket_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ func (cli *socketClient) drainQueue() {
cli.mtx.Lock()
defer cli.mtx.Unlock()

cli.reqQueue = make(chan *requestAndResponse, RequestQueueSize)
cli.reqQueue = make(chan *requestAndResponse)
// mark all in-flight messages as resolved (they will get cli.Error())
for req := cli.reqSent.Front(); req != nil; req = req.Next() {
reqres := req.Value.(*requestAndResponse)
Expand Down

0 comments on commit ab1c4c8

Please sign in to comment.