loops 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
- ---
2
- :patch: 0
3
- :build:
1
+ ---
2
+ :patch: 1
4
3
  :major: 2
5
4
  :minor: 0
5
+ :build:
data/bin/loops CHANGED
@@ -10,7 +10,7 @@ begin
10
10
  rescue SystemExit => e
11
11
  Kernel.exit(e.status)
12
12
  rescue Exception => e
13
- STDERR.puts("#{e.message} (#{e.class})")
13
+ STDERR.puts("Unhandled exception: #{e.message} (#{e.class})")
14
14
  STDERR.puts(e.backtrace.join("\n"))
15
15
  Kernel.exit(1)
16
16
  end
data/lib/loops/worker.rb CHANGED
@@ -49,7 +49,6 @@ module Loops
49
49
  logger.fatal("Worker exited with error: #{message}\n #{e.backtrace.join("\n ")}")
50
50
  end
51
51
  logger.fatal("Terminating #{@name} worker: #{@pid}")
52
- raise # so that the error gets written to stderr
53
52
  end
54
53
  end
55
54
  elsif @engine == 'thread'
data/loops.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{loops}
8
- s.version = "2.0.0"
8
+ s.version = "2.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Alexey Kovyrin", "Dmytro Shteflyuk"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 0
8
- - 0
9
- version: 2.0.0
8
+ - 1
9
+ version: 2.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Alexey Kovyrin