logging-couchdb 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -1
- data/Rakefile +1 -1
- data/lib/logging/couch_db_appender.rb +2 -0
- metadata +2 -2
data/History.txt
CHANGED
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.
|
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.
|
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-
|
12
|
+
date: 2009-08-19 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|