Variable RPCConfig.write_timeout

Timeout for a write operation

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

Whenever sending data toa 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.