fastly_nsq 1.10.0 → 1.10.1

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
  SHA256:
3
- metadata.gz: 50a60efb4df61a42c1a86afc21062375622f93e3d68d8f0c6f08ff60e44aa57b
4
- data.tar.gz: effddde6ad0930afb14c007f03aada0637437651ccd62b36c1b5a1b5b84a4344
3
+ metadata.gz: 7a2ad1978ec60aceffaa2d7ad65bfde7fb39b448bcdba9af1c717cdd40f2d26e
4
+ data.tar.gz: aa81a7f22dfd9dea23eabf3ba1ccdf07e1a768a9345a30c63b3cbce1f4849bc0
5
5
  SHA512:
6
- metadata.gz: d3a447b9a80c310994775ebd89d13bcdde8ccd4f9d9defa4891f9a67d62a2a4ac63c79a0dffaa93c906721e5e2e90504fdefc8ca7137740c23e1509ef64003ef
7
- data.tar.gz: 2b602098ff5095cba6c8fc1f02ec9cdd693c4cc0ba7361fe43a1a63b5b641218016b086da426c3052ffd40758e2a6abf865733f7bcbd894f9f2dff1a14c01725
6
+ metadata.gz: 3dd5106b6c756c8e42776bc92abcff24c3a0a1b4bb1c7b3e2d5ec9d9a71c1dc4805e63a6957b419e46f985b8140010f1fb224ab8f5fd538c95ab80b1006deb2d
7
+ data.tar.gz: 18b175afe0c3398d47f85557f6a0f29daa066c1ad41492d79b819c92de9433ca430341a0232ca5dc4821a6a30ad267ecd96a54d279cd96280d31a82dcfde54a9
@@ -1,7 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [v1.10.0](https://github.com/fastly/fastly_nsq/tree/HEAD)
3
+ ## [v1.10.1](https://github.com/fastly/fastly_nsq/tree/HEAD)
4
4
 
5
+ [Full Changelog](https://github.com/fastly/fastly_nsq/compare/v1.10.0...v1.10.1)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Ensure max\_req\_timeout is integer when fetching from ENV [\#86](https://github.com/fastly/fastly_nsq/pull/86) ([leklund](https://github.com/leklund))
10
+
11
+ ## [v1.10.0](https://github.com/fastly/fastly_nsq/tree/v1.10.0) (2018-07-23)
5
12
  [Full Changelog](https://github.com/fastly/fastly_nsq/compare/v1.9.3...v1.10.0)
6
13
 
7
14
  **Merged pull requests:**
@@ -99,7 +99,7 @@ module FastlyNsq
99
99
  # @return [Integer]
100
100
  # @see https://nsq.io/components/nsqd.html#command-line-options
101
101
  def max_req_timeout
102
- @max_req_timeout ||= ENV.fetch('MAX_REQ_TIMEOUT', 60 * 60 * 1_000)
102
+ @max_req_timeout ||= ENV.fetch('MAX_REQ_TIMEOUT', 60 * 60 * 1_000).to_i
103
103
  end
104
104
 
105
105
  ##
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FastlyNsq
4
- VERSION = '1.10.0'
4
+ VERSION = '1.10.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastly_nsq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tommy O'Neil
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2018-07-23 00:00:00.000000000 Z
16
+ date: 2018-07-24 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: awesome_print