bunny 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce0b2a90fab8489b955204f892ad87b024ddef69
4
- data.tar.gz: b09ccb3fe8b9404ea00552b92d362d20fa967e88
3
+ metadata.gz: b15dc09aa8217431f0021fec53a10f41a57cbfbe
4
+ data.tar.gz: d1fcce6ab41b52b96f0ebeb5d708af6d9c659552
5
5
  SHA512:
6
- metadata.gz: 617ef0a5a794bac0a3d0f778ecc6e41bf39d27d5372edccbf7169192b536b03aba152d3fd3cdeca7d32d0380921ed883126854dae24c70e7ba18adefbbeb00f5
7
- data.tar.gz: 9f1d2ca82d40a8f3a493bf0bfccefca420aa3f7014673aff07255271289ca7ab1d1e9513f664949a890e91e07ada540cd5e8525723746dae2480bcf7846722f2
6
+ metadata.gz: b2f02155a020641d5d1382d2a6cd5ce0be034ef6ce0f4e6ec6e0d55b0fac73627fcfa1ffdc76e28d1a5cbab05ea9831893692956ec4fb5cbc6345112c95b6539
7
+ data.tar.gz: c374bef638396e738a053abc10e076853f647d670d3b9a58cea28bd148715bcebee07b26a02471a2d2e27aa3462bef564ed0f33b5788b9666749737bf99770f5
@@ -1,3 +1,13 @@
1
+ ## Changes between Bunny 1.1.3 and 1.1.4
2
+
3
+ ### Bunny::Concurrent::ContinuationQueue#poll Rounding Fix
4
+
5
+ `Bunny::Concurrent::ContinuationQueue#poll` no longer floors the argument
6
+ to the nearest second.
7
+
8
+ Contributed by Brian Abreu.
9
+
10
+
1
11
  ## Changes between Bunny 1.1.2 and 1.1.3
2
12
 
3
13
  ### Nagle's Algorithm Disabled Correctly
@@ -21,7 +21,7 @@ module Bunny
21
21
 
22
22
  def poll(timeout_in_ms = nil)
23
23
  if timeout_in_ms
24
- Bunny::Timeout.timeout(timeout_in_ms / 1000, ::Timeout::Error) do
24
+ Bunny::Timeout.timeout(timeout_in_ms / 1000.0, ::Timeout::Error) do
25
25
  @q.pop
26
26
  end
27
27
  else
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "1.1.3"
5
+ VERSION = "1.1.4"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bunny
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Duncan
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2014-02-15 00:00:00.000000000 Z
15
+ date: 2014-03-17 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: amq-protocol