mirror of https://github.com/fafhrd91/actix-web
fix client builder
This commit is contained in:
parent
75b5076ebf
commit
aaecda1877
|
@ -81,7 +81,7 @@ where
|
||||||
default_headers: self.default_headers,
|
default_headers: self.default_headers,
|
||||||
headers: self.headers,
|
headers: self.headers,
|
||||||
timeout: self.timeout,
|
timeout: self.timeout,
|
||||||
local_address: None,
|
local_address: self.local_address,
|
||||||
connector,
|
connector,
|
||||||
max_http_version: self.max_http_version,
|
max_http_version: self.max_http_version,
|
||||||
stream_window_size: self.stream_window_size,
|
stream_window_size: self.stream_window_size,
|
||||||
|
@ -208,6 +208,7 @@ where
|
||||||
headers: self.headers,
|
headers: self.headers,
|
||||||
timeout: self.timeout,
|
timeout: self.timeout,
|
||||||
connector: self.connector,
|
connector: self.connector,
|
||||||
|
local_address: self.local_address,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -234,7 +235,6 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
let connector = boxed::service(DefaultConnector::new(connector.finish()));
|
let connector = boxed::service(DefaultConnector::new(connector.finish()));
|
||||||
|
|
||||||
let connector = boxed::service(self.middleware.new_transform(connector));
|
let connector = boxed::service(self.middleware.new_transform(connector));
|
||||||
|
|
||||||
let config = ClientConfig {
|
let config = ClientConfig {
|
||||||
|
|
Loading…
Reference in New Issue