event-shipper 0.2.1 → 0.2.2

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.
@@ -33,7 +33,11 @@ module EventShipper
33
33
  host: redis_config['host'],
34
34
  port: redis_config['port'])
35
35
 
36
- trap('SIGINFO') { puts transport.stats }
36
+ begin
37
+ trap('SIGINFO') { puts transport.stats }
38
+ rescue ArgumentError
39
+ # unsupported signal SIGINFO
40
+ end
37
41
 
38
42
  transport.dispatch { |queue, message|
39
43
  # puts message }
@@ -31,7 +31,11 @@ module EventShipper
31
31
  tailer
32
32
  end
33
33
 
34
- trap('SIGINFO') { puts transport.stats }
34
+ begin
35
+ trap('SIGINFO') { puts transport.stats }
36
+ rescue ArgumentError
37
+ # unsupported signal SIGINFO
38
+ end
35
39
 
36
40
  # Block until everyone exits.
37
41
  tailers.each do |tailer|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: event-shipper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-05-14 00:00:00.000000000 Z
12
+ date: 2013-05-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: redis