Method: Casper::RpcClient#info_get_status
- Defined in:
-
lib/rpc/rpc.rb,
lib/rpc/rpc_client.rb
Receive node status information
92 93 94 95 96 97 98 99 100 101 |
# File 'lib/rpc/rpc.rb', line 92 def info_get_status begin status = Timeout::timeout(10) { client = Jimson::Client.new(@url) @node_status = client.info_get_status } rescue 'Timeout expired to retrieve node status information' end end |