zk-server 1.0.0 → 1.0.1

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.
@@ -93,7 +93,7 @@ module ZK
93
93
 
94
94
  def spawn_zookeeper_thread!
95
95
  @zookeeper_thread ||= Thread.new do
96
- Thread.abort_on_exception = true
96
+ Thread.current.abort_on_exception = true
97
97
  cnxn_factory.startup(zk_server)
98
98
  cnxn_factory.join
99
99
  cnxn_factory.shutdown
@@ -1,5 +1,5 @@
1
1
  module ZK
2
2
  module Server
3
- VERSION = "1.0.0" unless defined?(::ZK::Server::VERSION)
3
+ VERSION = "1.0.1" unless defined?(::ZK::Server::VERSION)
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zk-server
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jonathan D. Simms