red_unicorn 1.1.2 → 1.1.3

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.
@@ -1,3 +1,6 @@
1
+ == v1.1.3
2
+ * Provide warning on missing PID and continue (PID file may go missing after unicorn has been stopped)
3
+
1
4
  == v1.1.2
2
5
  * Exception type fix
3
6
 
@@ -140,7 +140,8 @@ module RedUnicorn
140
140
  rescue Errno::EPERM, Errno::ESRCH
141
141
  false
142
142
  rescue => e
143
- raise UnicornError.new "#{e.class.name}: #{e}"
143
+ $stderr.puts "WARN: #{e.class.name}: #{e}"
144
+ false
144
145
  end
145
146
  end
146
147
 
@@ -13,5 +13,5 @@ module RedUnicorn
13
13
  end
14
14
  end
15
15
 
16
- VERSION = Version.new('1.1.2')
16
+ VERSION = Version.new('1.1.3')
17
17
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: red_unicorn
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 2
10
- version: 1.1.2
9
+ - 3
10
+ version: 1.1.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Chris Roberts