sidekiq-unique-jobs 7.1.17 → 7.1.20

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sidekiq-unique-jobs might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 787e3a8e85324b12df2f67dc04bee3ad3ad26deadc06ce170c9a5c5be62c1047
4
- data.tar.gz: d280fac7bf32f98bbe8071822463c7184e24339ad756953131d113f2b18710a3
3
+ metadata.gz: 2a112ea37ca98a7909abf3b536e5d5f2b147e3a40f7749bf3c7d819c259d069e
4
+ data.tar.gz: a3f34c72a78723c0dd441d005ae0300662183ddbe24cde430e7714587feccbd3
5
5
  SHA512:
6
- metadata.gz: c6549578ab2200965dcbab5e8acbf9e159f5dccce5bd2eb277b6914739e3279195169fd59349d47ae8c2cf9dec2bb7b2116fbceafd17d442b1be6096f9e559fb
7
- data.tar.gz: e2469b5c19d39d97fb231db49f291a8e5dcd6763f39c28d794b69b43f1551ffc5275075b39a6d11a5eda82409f87f3d4a0d5d0ce2789b4cf90f84c5940c58c2c
6
+ metadata.gz: 0a6d73f2beade75f9b0261a65ff3be37dfe0fe35c6ff3550635d3b8c634f1ad80c646c36be63c304806ef4f4f471eb0bb56ad641714ed48a53a14ee1d9f1a1aa
7
+ data.tar.gz: 93f518d9743445c8b844032dbcd8e583a88909b7e3bed9b88807ce3e3e337d2bdf101b8b413e8610705a22aae98747c8fa63549a2b001adc9800903577ad3694
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [v7.1.19](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.19) (2022-04-09)
4
+
5
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.18...v7.1.19)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - concurrent-ruby 1.1.10 spikes volume of jobs [\#701](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/701)
10
+ - Reimplement the entire TimerTask as it was [\#702](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/702) ([mhenrixon](https://github.com/mhenrixon))
11
+
12
+ ## [v7.1.18](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.18) (2022-04-05)
13
+
14
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.17...v7.1.18)
15
+
16
+ **Implemented enhancements:**
17
+
18
+ - Make sure we reflect on execution failure [\#700](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/700) ([mhenrixon](https://github.com/mhenrixon))
19
+
20
+ ## [v7.1.17](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.17) (2022-04-05)
21
+
22
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.16...v7.1.17)
23
+
3
24
  ## [v7.1.16](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.16) (2022-04-02)
4
25
 
5
26
  [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.15...v7.1.16)
data/README.md CHANGED
@@ -123,9 +123,11 @@ Before v7, the middleware was configured automatically. Since some people report
123
123
 
124
124
  *NOTE* if you want to use the reaper you also need to configure the server middleware.
125
125
 
126
- [A full example](https://github.com/mhenrixon/sidekiq-unique-jobs/blob/master/myapp/config/initializers/sidekiq.rb#L12)
126
+ The following shows how to modify your `config/initializers/sidekiq.rb` file to use the middleware. [Here is a full example.](https://github.com/mhenrixon/sidekiq-unique-jobs/blob/master/myapp/config/initializers/sidekiq.rb#L12)
127
127
 
128
128
  ```ruby
129
+ require "sidekiq-unique-jobs"
130
+
129
131
  Sidekiq.configure_server do |config|
130
132
  config.redis = { url: ENV["REDIS_URL"], driver: :hiredis }
131
133
 
@@ -110,13 +110,7 @@ module SidekiqUniqueJobs
110
110
  # @return [Hash]
111
111
  #
112
112
  def timer_task_options
113
- timer_task_options = { run_now: true, execution_interval: reaper_interval }
114
-
115
- if VersionCheck.satisfied?(::Concurrent::VERSION, "< 1.1.10")
116
- timer_task_options[:timeout_interval] = reaper_timeout
117
- end
118
-
119
- timer_task_options
113
+ { run_now: true, execution_interval: reaper_interval }
120
114
  end
121
115
 
122
116
  #
@@ -133,13 +127,6 @@ module SidekiqUniqueJobs
133
127
  SidekiqUniqueJobs.config.reaper_interval
134
128
  end
135
129
 
136
- #
137
- # @see SidekiqUniqueJobs::Config#reaper_timeout
138
- #
139
- def reaper_timeout
140
- SidekiqUniqueJobs.config.reaper_timeout
141
- end
142
-
143
130
  #
144
131
  # A context to use for all log entries
145
132
  #
@@ -11,6 +11,8 @@ module SidekiqUniqueJobs
11
11
  #
12
12
  # rubocop:disable Metrics/ClassLength
13
13
  class RubyReaper < Reaper
14
+ include SidekiqUniqueJobs::Timing
15
+
14
16
  #
15
17
  # @return [String] the suffix for :RUN locks
16
18
  RUN_SUFFIX = ":RUN"
@@ -30,6 +32,16 @@ module SidekiqUniqueJobs
30
32
  # @return [Redis::SortedSet] the Sidekiq RetrySet
31
33
  attr_reader :retried
32
34
 
35
+ #
36
+ # @!attribute [r] start_time
37
+ # @return [Integer] The timestamp this execution started represented as integer
38
+ attr_reader :start_time
39
+
40
+ #
41
+ # @!attribute [r] timeout_ms
42
+ # @return [Integer] The allowed ms before timeout
43
+ attr_reader :timeout_ms
44
+
33
45
  #
34
46
  # Initialize a new instance of DeleteOrphans
35
47
  #
@@ -37,9 +49,11 @@ module SidekiqUniqueJobs
37
49
  #
38
50
  def initialize(conn)
39
51
  super(conn)
40
- @digests = SidekiqUniqueJobs::Digests.new
41
- @scheduled = Redis::SortedSet.new(SCHEDULE)
42
- @retried = Redis::SortedSet.new(RETRY)
52
+ @digests = SidekiqUniqueJobs::Digests.new
53
+ @scheduled = Redis::SortedSet.new(SCHEDULE)
54
+ @retried = Redis::SortedSet.new(RETRY)
55
+ @start_time = time_source.call
56
+ @timeout_ms = SidekiqUniqueJobs.config.reaper_timeout * 1000
43
57
  end
44
58
 
45
59
  #
@@ -60,7 +74,7 @@ module SidekiqUniqueJobs
60
74
  #
61
75
  # @return [Array<String>] an array of orphaned digests
62
76
  #
63
- def orphans # rubocop:disable Metrics/MethodLength
77
+ def orphans # rubocop:disable Metrics/MethodLength, Metrics/CyclomaticComplexity
64
78
  page = 0
65
79
  per = reaper_count * 2
66
80
  orphans = []
@@ -68,12 +82,14 @@ module SidekiqUniqueJobs
68
82
 
69
83
  while results.size.positive?
70
84
  results.each do |digest|
85
+ break if timeout?
71
86
  next if belongs_to_job?(digest)
72
87
 
73
88
  orphans << digest
74
89
  break if orphans.size >= reaper_count
75
90
  end
76
91
 
92
+ break if timeout?
77
93
  break if orphans.size >= reaper_count
78
94
 
79
95
  page += 1
@@ -83,6 +99,14 @@ module SidekiqUniqueJobs
83
99
  orphans
84
100
  end
85
101
 
102
+ def timeout?
103
+ elapsed_ms >= timeout_ms
104
+ end
105
+
106
+ def elapsed_ms
107
+ time_source.call - start_time
108
+ end
109
+
86
110
  #
87
111
  # Checks if the digest has a matching job.
88
112
  # 1. It checks the scheduled set
@@ -1,84 +1,299 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "concurrent/version"
4
- require_relative "version_check"
3
+ require "concurrent/collection/copy_on_notify_observer_set"
4
+ require "concurrent/concern/dereferenceable"
5
+ require "concurrent/concern/observable"
6
+ require "concurrent/atomic/atomic_boolean"
7
+ require "concurrent/executor/executor_service"
8
+ require "concurrent/executor/ruby_executor_service"
9
+ require "concurrent/executor/safe_task_executor"
10
+ require "concurrent/scheduled_task"
5
11
 
6
12
  module SidekiqUniqueJobs
7
- # @see [Concurrent::TimerTask] https://www.rubydoc.info/gems/concurrent-ruby/Concurrent/TimerTask
13
+ # A very common concurrency pattern is to run a thread that performs a task at
14
+ # regular intervals. The thread that performs the task sleeps for the given
15
+ # interval then wakes up and performs the task. Lather, rinse, repeat... This
16
+ # pattern causes two problems. First, it is difficult to test the business
17
+ # logic of the task because the task itself is tightly coupled with the
18
+ # concurrency logic. Second, an exception raised while performing the task can
19
+ # cause the entire thread to abend. In a long-running application where the
20
+ # task thread is intended to run for days/weeks/years a crashed task thread
21
+ # can pose a significant problem. `TimerTask` alleviates both problems.
8
22
  #
9
- class TimerTask < ::Concurrent::TimerTask
10
- if VersionCheck.satisfied?(::Concurrent::VERSION, "< 1.1.10")
23
+ # When a `TimerTask` is launched it starts a thread for monitoring the
24
+ # execution interval. The `TimerTask` thread does not perform the task,
25
+ # however. Instead, the TimerTask launches the task on a separate thread.
26
+ # Should the task experience an unrecoverable crash only the task thread will
27
+ # crash. This makes the `TimerTask` very fault tolerant. Additionally, the
28
+ # `TimerTask` thread can respond to the success or failure of the task,
29
+ # performing logging or ancillary operations.
30
+ #
31
+ # One other advantage of `TimerTask` is that it forces the business logic to
32
+ # be completely decoupled from the concurrency logic. The business logic can
33
+ # be tested separately then passed to the `TimerTask` for scheduling and
34
+ # running.
35
+ #
36
+ # In some cases it may be necessary for a `TimerTask` to affect its own
37
+ # execution cycle. To facilitate this, a reference to the TimerTask instance
38
+ # is passed as an argument to the provided block every time the task is
39
+ # executed.
40
+ #
41
+ # The `TimerTask` class includes the `Dereferenceable` mixin module so the
42
+ # result of the last execution is always available via the `#value` method.
43
+ # Dereferencing options can be passed to the `TimerTask` during construction or
44
+ # at any later time using the `#set_deref_options` method.
45
+ #
46
+ # `TimerTask` supports notification through the Ruby standard library
47
+ # {http://ruby-doc.org/stdlib-2.0/libdoc/observer/rdoc/Observable.html
48
+ # Observable} module. On execution the `TimerTask` will notify the observers
49
+ # with three arguments: time of execution, the result of the block (or nil on
50
+ # failure), and any raised exceptions (or nil on success).
51
+ #
52
+ # @!macro copy_options
53
+ #
54
+ # @example Basic usage
55
+ # task = Concurrent::TimerTask.new{ puts 'Boom!' }
56
+ # task.execute
57
+ #
58
+ # task.execution_interval #=> 60 (default)
59
+ #
60
+ # # wait 60 seconds...
61
+ # #=> 'Boom!'
62
+ #
63
+ # task.shutdown #=> true
64
+ #
65
+ # @example Configuring `:execution_interval`
66
+ # task = Concurrent::TimerTask.new(execution_interval: 5) do
67
+ # puts 'Boom!'
68
+ # end
69
+ #
70
+ # task.execution_interval #=> 5
71
+ #
72
+ # @example Immediate execution with `:run_now`
73
+ # task = Concurrent::TimerTask.new(run_now: true){ puts 'Boom!' }
74
+ # task.execute
75
+ #
76
+ # #=> 'Boom!'
77
+ #
78
+ # @example Last `#value` and `Dereferenceable` mixin
79
+ # task = Concurrent::TimerTask.new(
80
+ # dup_on_deref: true,
81
+ # execution_interval: 5
82
+ # ){ Time.now }
83
+ #
84
+ # task.execute
85
+ # Time.now #=> 2013-11-07 18:06:50 -0500
86
+ # sleep(10)
87
+ # task.value #=> 2013-11-07 18:06:55 -0500
88
+ #
89
+ # @example Controlling execution from within the block
90
+ # timer_task = Concurrent::TimerTask.new(execution_interval: 1) do |task|
91
+ # task.execution_interval.times{ print 'Boom! ' }
92
+ # print "\n"
93
+ # task.execution_interval += 1
94
+ # if task.execution_interval > 5
95
+ # puts 'Stopping...'
96
+ # task.shutdown
97
+ # end
98
+ # end
99
+ #
100
+ # timer_task.execute # blocking call - this task will stop itself
101
+ # #=> Boom!
102
+ # #=> Boom! Boom!
103
+ # #=> Boom! Boom! Boom!
104
+ # #=> Boom! Boom! Boom! Boom!
105
+ # #=> Boom! Boom! Boom! Boom! Boom!
106
+ # #=> Stopping...
107
+ #
108
+ # @example Observation
109
+ # class TaskObserver
110
+ # def update(time, result, ex)
111
+ # if result
112
+ # print "(#{time}) Execution successfully returned #{result}\n"
113
+ # else
114
+ # print "(#{time}) Execution failed with error #{ex}\n"
115
+ # end
116
+ # end
117
+ # end
118
+ #
119
+ # task = Concurrent::TimerTask.new(execution_interval: 1){ 42 }
120
+ # task.add_observer(TaskObserver.new)
121
+ # task.execute
122
+ # sleep 4
123
+ #
124
+ # #=> (2013-10-13 19:08:58 -0400) Execution successfully returned 42
125
+ # #=> (2013-10-13 19:08:59 -0400) Execution successfully returned 42
126
+ # #=> (2013-10-13 19:09:00 -0400) Execution successfully returned 42
127
+ # task.shutdown
128
+ #
129
+ # task = Concurrent::TimerTask.new(execution_interval: 1){ sleep }
130
+ # task.add_observer(TaskObserver.new)
131
+ # task.execute
132
+ #
133
+ # #=> (2013-10-13 19:07:25 -0400) Execution timed out
134
+ # #=> (2013-10-13 19:07:27 -0400) Execution timed out
135
+ # #=> (2013-10-13 19:07:29 -0400) Execution timed out
136
+ # task.shutdown
137
+ #
138
+ # task = Concurrent::TimerTask.new(execution_interval: 1){ raise StandardError }
139
+ # task.add_observer(TaskObserver.new)
140
+ # task.execute
141
+ #
142
+ # #=> (2013-10-13 19:09:37 -0400) Execution failed with error StandardError
143
+ # #=> (2013-10-13 19:09:38 -0400) Execution failed with error StandardError
144
+ # #=> (2013-10-13 19:09:39 -0400) Execution failed with error StandardError
145
+ # task.shutdown
146
+ #
147
+ # @see http://ruby-doc.org/stdlib-2.0/libdoc/observer/rdoc/Observable.html
148
+ # @see http://docs.oracle.com/javase/7/docs/api/java/util/TimerTask.html
149
+ class TimerTask < Concurrent::RubyExecutorService
150
+ include Concurrent::Concern::Dereferenceable
151
+ include Concurrent::Concern::Observable
11
152
 
12
- private
153
+ # Default `:execution_interval` in seconds.
154
+ EXECUTION_INTERVAL = 60
13
155
 
14
- def ns_initialize(opts, &task)
15
- set_deref_options(opts)
156
+ # Default `:timeout_interval` in seconds.
157
+ TIMEOUT_INTERVAL = 30
16
158
 
17
- self.execution_interval = opts[:execution] || opts[:execution_interval] || EXECUTION_INTERVAL
18
- self.timeout_interval = opts[:timeout] || opts[:timeout_interval] || TIMEOUT_INTERVAL
19
- @run_now = opts[:now] || opts[:run_now]
20
- @executor = Concurrent::RubySingleThreadExecutor.new
21
- @running = Concurrent::AtomicBoolean.new(false)
22
- @task = task
23
- @value = nil
159
+ # Create a new TimerTask with the given task and configuration.
160
+ #
161
+ # @!macro timer_task_initialize
162
+ # @param [Hash] opts the options defining task execution.
163
+ # @option opts [Integer] :execution_interval number of seconds between
164
+ # task executions (default: EXECUTION_INTERVAL)
165
+ # @option opts [Boolean] :run_now Whether to run the task immediately
166
+ # upon instantiation or to wait until the first # execution_interval
167
+ # has passed (default: false)
168
+ #
169
+ # @!macro deref_options
170
+ #
171
+ # @raise ArgumentError when no block is given.
172
+ #
173
+ # @yield to the block after :execution_interval seconds have passed since
174
+ # the last yield
175
+ # @yieldparam task a reference to the `TimerTask` instance so that the
176
+ # block can control its own lifecycle. Necessary since `self` will
177
+ # refer to the execution context of the block rather than the running
178
+ # `TimerTask`.
179
+ #
180
+ # @return [TimerTask] the new `TimerTask`
181
+ def initialize(opts = {}, &task)
182
+ raise ArgumentError, "no block given" unless task
24
183
 
25
- self.observers = Concurrent::Collection::CopyOnNotifyObserverSet.new
26
- end
184
+ super
185
+ set_deref_options opts
186
+ end
27
187
 
28
- def schedule_next_task(interval = execution_interval)
29
- exec_task = ->(completion) { execute_task(completion) }
30
- Concurrent::ScheduledTask.execute(interval, args: [Concurrent::Event.new], &exec_task)
31
- nil
32
- end
188
+ # Is the executor running?
189
+ #
190
+ # @return [Boolean] `true` when running, `false` when shutting down or shutdown
191
+ def running?
192
+ @running.true?
193
+ end
33
194
 
34
- # @!visibility private
35
- def execute_task(completion) # rubocop:disable Metrics/MethodLength
36
- return nil unless @running.true?
37
-
38
- timeout_task = -> { timeout_task(completion) }
39
-
40
- Concurrent::ScheduledTask.execute(
41
- timeout_interval,
42
- args: [completion],
43
- &timeout_task
44
- )
45
- @thread_completed = Concurrent::Event.new
46
-
47
- @value = @reason = nil
48
- @executor.post do
49
- @value = @task.call(self)
50
- rescue Exception => ex # rubocop:disable Lint/RescueException
51
- @reason = ex
52
- ensure
53
- @thread_completed.set
195
+ # Execute a previously created `TimerTask`.
196
+ #
197
+ # @return [TimerTask] a reference to `self`
198
+ #
199
+ # @example Instance and execute in separate steps
200
+ # task = Concurrent::TimerTask.new(execution_interval: 10){ print "Hello World\n" }
201
+ # task.running? #=> false
202
+ # task.execute
203
+ # task.running? #=> true
204
+ #
205
+ # @example Instance and execute in one line
206
+ # task = Concurrent::TimerTask.new(execution_interval: 10){ print "Hello World\n" }.execute
207
+ # task.running? #=> true
208
+ def execute
209
+ synchronize do
210
+ if @running.false?
211
+ @running.make_true
212
+ schedule_next_task(@run_now ? 0 : @execution_interval)
54
213
  end
214
+ end
215
+ self
216
+ end
55
217
 
56
- @thread_completed.wait
218
+ # Create and execute a new `TimerTask`.
219
+ #
220
+ # @!macro timer_task_initialize
221
+ #
222
+ # @example
223
+ # task = Concurrent::TimerTask.execute(execution_interval: 10){ print "Hello World\n" }
224
+ # task.running? #=> true
225
+ def self.execute(opts = {}, &task)
226
+ TimerTask.new(opts, &task).execute
227
+ end
57
228
 
58
- if completion.try?
59
- schedule_next_task
60
- time = Time.now
61
- observers.notify_observers do
62
- [time, value, @reason]
63
- end
64
- end
65
- nil
229
+ # @!attribute [rw] execution_interval
230
+ # @return [Fixnum] Number of seconds after the task completes before the
231
+ # task is performed again.
232
+ def execution_interval
233
+ synchronize { @execution_interval }
234
+ end
235
+
236
+ # @!attribute [rw] execution_interval
237
+ # @return [Fixnum] Number of seconds after the task completes before the
238
+ # task is performed again.
239
+ def execution_interval=(value)
240
+ raise ArgumentError, "must be greater than zero" if (value = value.to_f) <= 0.0
241
+
242
+ synchronize { @execution_interval = value }
243
+ end
244
+
245
+ private :post, :<<
246
+
247
+ private
248
+
249
+ def ns_initialize(opts, &task)
250
+ set_deref_options(opts)
251
+
252
+ self.execution_interval = opts[:execution] || opts[:execution_interval] || EXECUTION_INTERVAL
253
+ if opts[:timeout] || opts[:timeout_interval]
254
+ warn "TimeTask timeouts are now ignored as these were not able to be implemented correctly"
66
255
  end
256
+ @run_now = opts[:now] || opts[:run_now]
257
+ @executor = Concurrent::SafeTaskExecutor.new(task)
258
+ @running = Concurrent::AtomicBoolean.new(false)
259
+ @value = nil
260
+
261
+ self.observers = Concurrent::Collection::CopyOnNotifyObserverSet.new
262
+ end
263
+
264
+ # @!visibility private
265
+ def ns_shutdown_execution
266
+ @running.make_false
267
+ super
268
+ end
67
269
 
68
- # @!visibility private
69
- def timeout_task(completion)
70
- return unless @running.true?
71
- return unless completion.try?
270
+ # @!visibility private
271
+ def ns_kill_execution
272
+ @running.make_false
273
+ super
274
+ end
72
275
 
73
- @executor.kill
74
- @executor.wait_for_termination
75
- @executor = Concurrent::RubySingleThreadExecutor.new
276
+ # @!visibility private
277
+ def schedule_next_task(interval = execution_interval)
278
+ exec_task = ->(completion) { execute_task(completion) }
279
+ Concurrent::ScheduledTask.execute(interval, args: [Concurrent::Event.new], &exec_task)
280
+ nil
281
+ end
76
282
 
77
- @thread_completed.set
283
+ # @!visibility private
284
+ def execute_task(completion)
285
+ return nil unless @running.true?
78
286
 
287
+ _success, value, reason = @executor.execute(self)
288
+ if completion.try?
289
+ self.value = value
79
290
  schedule_next_task
80
- observers.notify_observers(Time.now, nil, Concurrent::TimeoutError.new)
291
+ time = Time.now
292
+ observers.notify_observers do
293
+ [time, self.value, reason]
294
+ end
81
295
  end
296
+ nil
82
297
  end
83
298
  end
84
299
  end
@@ -3,5 +3,5 @@
3
3
  module SidekiqUniqueJobs
4
4
  #
5
5
  # @return [String] the current SidekiqUniqueJobs version
6
- VERSION = "7.1.17"
6
+ VERSION = "7.1.20"
7
7
  end
@@ -17,7 +17,7 @@ COMMIT_CHANGELOG_CMD = "git commit -a -m 'Update changelog'"
17
17
  desc "Generate a Changelog"
18
18
  task :changelog do
19
19
  sh("git checkout main")
20
- sh(*CHANGELOG_CMD.push(ENV["CHANGELOG_GITHUB_TOKEN"]))
20
+ sh(*CHANGELOG_CMD.push(ENV.fetch("CHANGELOG_GITHUB_TOKEN", nil)))
21
21
  sh(ADD_CHANGELOG_CMD)
22
22
  sh(COMMIT_CHANGELOG_CMD)
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq-unique-jobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.17
4
+ version: 7.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-05 00:00:00.000000000 Z
11
+ date: 2022-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: brpoplpush-redis_script