Skip to content

Commit

Permalink
reduce duplicate rdy updation requests
Browse files Browse the repository at this point in the history
  • Loading branch information
andyxning committed Feb 21, 2020
1 parent d9600b3 commit 5254c93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,13 @@ func (r *Consumer) sendRDY(c *Conn, count int64) error {
}

atomic.AddInt64(&r.totalRdyCount, count-c.RDY())

lastRDY := c.LastRDY()
c.SetRDY(count)
if count == lastRDY {
return nil
}

err := c.WriteCommand(Ready(int(count)))
if err != nil {
r.log(LogLevelError, "(%s) error sending RDY %d - %s", c.String(), count, err)
Expand Down
1 change: 0 additions & 1 deletion mock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ func TestConsumerRequeueNoBackoff(t *testing.T) {
"RDY 0",
fmt.Sprintf("REQ %s 0", msgIDRequeueNoBackoff),
"RDY 1",
"RDY 1",
fmt.Sprintf("FIN %s", msgIDGood),
}
if len(n.got) != len(expected) {
Expand Down

0 comments on commit 5254c93

Please sign in to comment.