Method: Protobuf::Rpc::Connectors::Ping#timeout
- Defined in:
- lib/protobuf/rpc/connectors/ping.rb
#timeout ⇒ Object
29 30 31 32 33 34 35 36 37 |
# File 'lib/protobuf/rpc/connectors/ping.rb', line 29 def timeout @timeout ||= begin if ::ENV.key?("PB_RPC_PING_PORT_TIMEOUT") ::ENV["PB_RPC_PING_PORT_TIMEOUT"].to_f / 1000 else 0.2 # 200 ms end end end |