(timeout: Duration)
| 387 | } |
| 388 | |
| 389 | pub fn http_agent_with_timeout(timeout: Duration) -> ureq::Agent { |
| 390 | ureq::Agent::config_builder() |
| 391 | .http_status_as_error(false) |
| 392 | .timeout_global(Some(timeout)) |
| 393 | .build() |
| 394 | .into() |
| 395 | } |
| 396 | |
| 397 | #[cfg(unix)] |
| 398 | pub struct DaemonProcess { |