1
0
Fork 0

mredis: fix how Block was being used, it wasn't being converted to an int properly

gh-v1-backup
Brian Picciano 5 years ago
parent 0b5b5aac00
commit c20f884d68
  1. 3
      mdb/mredis/stream.go

@ -174,7 +174,8 @@ func (s *Stream) fillBufFrom(id string) error {
if s.opts.ReadCount > 0 {
args = append(args, "COUNT", strconv.Itoa(s.opts.ReadCount))
}
args = append(args, "BLOCK", strconv.Itoa(int(s.opts.Block.Seconds())))
blockMS := int(s.opts.Block / time.Millisecond)
args = append(args, "BLOCK", strconv.Itoa(blockMS))
args = append(args, "STREAMS", s.opts.Key, id)
var srEntries []streamReaderEntry

Loading…
Cancel
Save