Skip to content

Commit 590bb2a

Browse files
authored
[TEST] Ensure test are checked on pull request (#7)
* [TEST] Ensure test are checked on pull request Run test automatically on push * fix gemfile lock * fix test * Fix test
1 parent 56f34bb commit 590bb2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
redis_stream (0.1.3)
4+
redis_stream (0.1.4)
55

66
GEM
77
remote: https://rubygems.org/

spec/dummy_redis.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def xadd(stream, data, approximate: nil, maxlen: nil, nomkstream: nil, id: "*")
88
@streams[stream] << data
99
end
1010

11-
def xreadgroup(group, consumer, streams, condition, count: 1, block: 5000)
11+
def xreadgroup(group, consumer, streams, condition, count: 1, block: 5000, noack: false)
1212
@streams[streams] ||= []
1313
@streams[streams].map.with_index do |data, index|
1414
[streams, {index => data}]

0 commit comments

Comments
 (0)