Variable RPCConfig.read_timeout

Timeout for a read operation

struct RPCConfig
{
  // ...
  core.time.Duration read_timeout = Duration(50000000L);
  // ...
}

Whenever reading from a remote host, this value defines how long we are willing to wait before marking the operation as failed. Note that the total wait time also depends on max_retries and retry_delay.