mirror of
https://github.com/actix/actix-web.git
synced 2024-11-29 04:51:13 +00:00
Fix deprecated notice about client_shutdown (#2621)
This commit is contained in:
parent
a68239adaa
commit
e9279dfbb8
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
#[deprecated(since = "4.0.0", note = "Renamed to `client_request_timeout`.")]
|
#[deprecated(since = "4.0.0", note = "Renamed to `client_disconnect_timeout`.")]
|
||||||
pub fn client_shutdown(self, dur: u64) -> Self {
|
pub fn client_shutdown(self, dur: u64) -> Self {
|
||||||
self.client_disconnect_timeout(Duration::from_millis(dur))
|
self.client_disconnect_timeout(Duration::from_millis(dur))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue