There was an error while loading. Please reload this page.
1 parent c2c103f commit fe2c7d9Copy full SHA for fe2c7d9
1 file changed
dns-transport/src/https.rs
@@ -42,6 +42,7 @@ impl Transport for HttpsTransport {
42
fn send(&self, request: &Request, timeout: Option<Duration>) -> Result<Response, Error> {
43
let client = reqwest::blocking::Client::builder()
44
.connect_timeout(timeout)
45
+ .timeout(timeout)
46
.build()?;
47
48
debug!("Connected");
0 commit comments