sidekiq 2.6.3 → 2.6.4

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

Potentially problematic release.


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

data/Changes.md CHANGED
@@ -1,3 +1,8 @@
1
+ 2.6.4
2
+ -----------
3
+
4
+ - Fix crash upon empty queue [#612]
5
+
1
6
  2.6.3
2
7
  -----------
3
8
 
@@ -67,7 +67,8 @@ module Sidekiq
67
67
  end
68
68
 
69
69
  def retrieve_work
70
- UnitOfWork.new(*Sidekiq.redis { |conn| conn.brpop(*queues_cmd) })
70
+ work = Sidekiq.redis { |conn| conn.brpop(*queues_cmd) }
71
+ UnitOfWork.new(*work) if work
71
72
  end
72
73
 
73
74
  UnitOfWork = Struct.new(:queue, :message) do
@@ -1,3 +1,3 @@
1
1
  module Sidekiq
2
- VERSION = "2.6.3"
2
+ VERSION = "2.6.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.3
4
+ version: 2.6.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: