zookeeper 1.4.1 → 1.4.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.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v1.4.2 fix a bug in the forwarding logger format string
2
+
1
3
  v1.4.1 merge pull request 29 - fix exception handling in jruby 1.7.x
2
4
 
3
5
  * h/t to @dynamix for the patch
@@ -11,7 +11,7 @@ module Zookeeper
11
11
  def self.for(logger, name)
12
12
  @@mutex.synchronize do
13
13
  @@loggers.fetch(name) do |k|
14
- @@loggers[k] = new(logger, :formatter => lambda { |m| "%25.25s: #{m}" % name })
14
+ @@loggers[k] = new(logger, :formatter => lambda { |m| "%25.25s: %s" % [k, m] })
15
15
  end
16
16
  end
17
17
  end
@@ -1,4 +1,4 @@
1
1
  module Zookeeper
2
- VERSION = '1.4.1'
2
+ VERSION = '1.4.2'
3
3
  DRIVER_VERSION = '3.3.5'
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zookeeper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
- - 1
10
- version: 1.4.1
9
+ - 2
10
+ version: 1.4.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Phillip Pearson
@@ -20,7 +20,7 @@ autorequire:
20
20
  bindir: bin
21
21
  cert_chain: []
22
22
 
23
- date: 2012-12-17 00:00:00 Z
23
+ date: 2013-01-10 00:00:00 Z
24
24
  dependencies: []
25
25
 
26
26
  description: |+