class GdsApi::JsonClient

def with_timeout(method_params)

parameters with timeouts included
Take a hash of parameters for Request#execute; return a hash of
def with_timeout(method_params)
  method_params.merge(
    timeout: options[:timeout] || DEFAULT_TIMEOUT_IN_SECONDS
  )
end