clustered_rpc 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bdb73943e182ea222043e914d49a263e20df8aa8db4c2ccc47eefab74061edb6
4
- data.tar.gz: 82547d220ca00679d58701089728728194206e9cbcfc844040acef32b3b9b8d5
3
+ metadata.gz: 86711e87d4b0d02bd28442183c6dee164eddcf85f5907554c1ee122b41f26cb1
4
+ data.tar.gz: 8b154d80b309ec854246c0daa2999a13b8556f59ddea7b3e080d3eb9f555bbee
5
5
  SHA512:
6
- metadata.gz: 2d7aa773597cc740ab719bcc2ab510197b0db60041ae26e18eb97807b31c97890baa78fffa5f485e50ae15c0a162f2c85da8dde91c5aa7e7648939dab0af5e33
7
- data.tar.gz: 1371470d9cd5a1db5fc95404df7d97e3fa7cfbd99da2c48a8c01b3ed1fecd65cae2308d03eda82d3250ae1a1e2d45b060ce58b6d057d0f8b4ad01b8420ad0a37
6
+ metadata.gz: 27b72f91705dbe127151885e9026c5bf05417e278eeb841573e177c512713764d2e76650a42bfd051f49d01aff8565e8bbfcb7079d31fac32bb5ac59f227aeb6
7
+ data.tar.gz: 70483d8f0100c7f894b91ecb2a76f3739da972579f69285252756e3a074068f0dbd9917c161e3f04f5df6ab8f7f94aaea6aa80f29786994b1d5e7dc177fc931e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- clustered_rpc (0.2.0)
4
+ clustered_rpc (0.2.1)
5
5
  activesupport
6
6
 
7
7
  GEM
data/lib/clustered_rpc.rb CHANGED
@@ -43,16 +43,9 @@ module ClusteredRpc
43
43
 
44
44
  def self.config(force=false, &block)
45
45
  block.call(self)
46
-
47
46
  @@instance_id ||= SecureRandom.hex(5)
48
- if transport_class.nil?
49
- require "clustered_rpc/transport/local_process"
50
- @@transport_class = ClusteredRpc::Transport::LocalProcess
51
- end
52
- logger.info "Clustered using #{@@transport_class}[#{@@cluster_namespace}]"
53
- @@transport = @@transport_class.new
47
+ ensure_transport
54
48
  @@transport.connect
55
-
56
49
  end
57
50
 
58
51
  def self.reconnect
@@ -64,9 +57,20 @@ module ClusteredRpc
64
57
  def self.publish(payload={})
65
58
  # if :request_id is already present, then we're responding with a process-level response
66
59
  # otherwise we're creating a new clustered_request and should generate a :request_io
60
+ ensure_transport
67
61
  payload[:request_id] ||= SecureRandom.hex(8)
68
62
  @@transport.publish payload
69
63
  payload[:request_id]
70
64
  end
71
65
 
66
+ private
67
+ def self.ensure_transport
68
+ return if @@transport
69
+ if @@transport_class.nil?
70
+ require "clustered_rpc/transport/local_process"
71
+ @@transport_class = ClusteredRpc::Transport::LocalProcess
72
+ end
73
+ logger.info "Clustered using #{@@transport_class}[#{@@cluster_namespace}]"
74
+ @@transport = @@transport_class.new
75
+ end
72
76
  end
@@ -10,7 +10,7 @@ module ClusteredRpc
10
10
  request_id = ::ClusteredRpc.publish({'klass' => @target.name, 'method' => method, 'args' => args, 'kwargs' => kwargs}.merge(@options))
11
11
  {request_id: request_id, success: true, results: ::ClusteredRpc.get_result(request_id, wait_seconds)}
12
12
  rescue => e
13
- ClusteredRpc.logger.error "ClusteredRpc::Proxy encountered errror: #{e.message}"
13
+ ClusteredRpc.logger.error "ClusteredRpc::Proxy encountered error: #{e.message}"
14
14
  {request_id: "Error", success: false, results: e.message}
15
15
  end
16
16
 
@@ -14,7 +14,7 @@ module ClusteredRpc
14
14
  def publish(payload={})
15
15
  @redis_publish.publish @redis_message_pubsub_key, payload.to_json
16
16
  rescue => e
17
- ClusteredRpc.logger.error "ClusteredRpc.publish encountered errror: #{e.message}"
17
+ ClusteredRpc.logger.error "ClusteredRpc.publish encountered error: #{e.message}"
18
18
  raise e
19
19
  end
20
20
 
@@ -1,3 +1,3 @@
1
1
  module ClusteredRpc
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clustered_rpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - megalithtracers@gmail.com