logging-couchdb 1.0.3 → 1.0.4

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,4 +1,9 @@
1
- == 1.0.2 / 2009-08-17
1
+ == 1.0.4 / 2009-08-19
2
+
3
+ * 1 bug fix
4
+ * Fixing an Errno::EINTR exception during appender shutdown.
5
+
6
+ == 1.0.3 / 2009-08-17
2
7
 
3
8
  * 1 bug fix
4
9
  * Fixing an object naming error.
data/Rakefile CHANGED
@@ -23,7 +23,7 @@ PROJ.name = 'logging-couchdb'
23
23
  PROJ.authors = 'Tim Pease'
24
24
  PROJ.email = 'tim.pease@gmail.com'
25
25
  PROJ.url = 'http://logging.rubyforge.org/logging-couchdb'
26
- PROJ.version = '1.0.3'
26
+ PROJ.version = '1.0.4'
27
27
  PROJ.rubyforge.name = 'logging'
28
28
  PROJ.exclude << 'logging-couchdb.gemspec'
29
29
  PROJ.readme_file = 'README.rdoc'
@@ -123,6 +123,8 @@ module Logging::Appenders
123
123
  RestClient.post(@db_uri, payload)
124
124
  #JSON.parse(RestClient.post(@db_uri, payload))
125
125
  self
126
+ rescue Errno::EINTR
127
+ return self
126
128
  rescue StandardError => err
127
129
  self.level = :off
128
130
  ::Logging.log_internal {"appender #{name.inspect} has been disabled"}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logging-couchdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Pease
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-17 00:00:00 -06:00
12
+ date: 2009-08-19 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency