emque-consuming 1.3.0 → 1.4.0

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: c816cc5b30fa87683a97704281d8417d179a3383
4
- data.tar.gz: 783d7eec99baeaef79576dec7a61a06130a2cc31
3
+ metadata.gz: 80e5272a0662b1b988a65aa018e660d5e20419df
4
+ data.tar.gz: 47219402278bc3a89aec13bb3b091589e132e8e9
5
5
  SHA512:
6
- metadata.gz: 66add2c0b1061e853c1e8de36fb774f964cb4f5a341048218d27b62c51d23757a03cfe3c500eed72cc6f6d7e22a68c0d7ee9882c38e76b7cff2d90fe11a48344
7
- data.tar.gz: ef37a0fe87ecf57b19c69c13cd0d53339639a802bd9eeb8e7f8002e2ebf13f159f9b4bc5415807aea5dedbf9f2af915f6976e8892d2d8df81dbb49a05b58040a
6
+ metadata.gz: c7d245d0cfd817397282b24cca7526f4ec4115c5a76d13f9dea449a48c427b9fc8727655b7c0ff915048bc8aff9e936a03906201b302de0f13bb7f8a61c24d54
7
+ data.tar.gz: '07900ca7faccf7cb4be8e01a16d69413b79bcab37f9b820d9a6c732fd8af055377cc8cc59351d63134ff6ce501158e88a47df35c85bc13df1c896d6d5fc6cb22'
@@ -1,8 +1,9 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 2.3.1
4
- - 2.4.4
5
- - 2.5.1
4
+ - 2.3.8
5
+ - 2.4.5
6
+ - 2.5.3
6
7
  script: bundle exec rake
7
8
  notifications:
8
9
  recipients:
@@ -1,5 +1,6 @@
1
1
  # Emque Consuming CHANGELOG
2
2
 
3
+ - [Disable pipe-ruby `raise_on_error` option to prevent duplicate erorrs](https://github.com/emque/emque-consuming/pull/74) 1.4.0
3
4
  - [Update minimum Ruby version to 2.3](https://github.com/emque/emque-consuming/pull/68) 1.3.0
4
5
  - [Update the oj gem to 2.18.5](https://github.com/emque/emque-consuming/pull/67) 1.2.4
5
6
  - [Add error logging when an exception is thrown.](https://github.com/emque/emque-consuming/pull/65) 1.2.3
@@ -27,6 +27,7 @@ module Emque
27
27
  def pipe_config
28
28
  @pipe_config ||= Pipe::Config.new(
29
29
  :error_handlers => [method(:handle_error)],
30
+ :raise_on_error => false,
30
31
  :stop_on => ->(msg, _, _) { !(msg.respond_to?(:continue?) && msg.continue?) }
31
32
  )
32
33
  end
@@ -1,5 +1,5 @@
1
1
  module Emque
2
2
  module Consuming
3
- VERSION = "1.3.0"
3
+ VERSION = "1.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emque-consuming
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Williams
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-07-02 00:00:00.000000000 Z
12
+ date: 2018-12-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: celluloid
@@ -290,7 +290,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
290
290
  version: '0'
291
291
  requirements: []
292
292
  rubyforge_project:
293
- rubygems_version: 2.5.2
293
+ rubygems_version: 2.5.2.3
294
294
  signing_key:
295
295
  specification_version: 4
296
296
  summary: Microservices framework for Ruby