mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
fix deprecation warning and update multipartr tests
This commit is contained in:
parent
7fdc863607
commit
de001b0f25
2 changed files with 3 additions and 3 deletions
|
@ -105,7 +105,7 @@ impl<Err> CookieSessionInner<Err> {
|
|||
}
|
||||
|
||||
if let Some(expires_in) = self.expires_in {
|
||||
cookie.set_expires(OffsetDateTime::now() + expires_in);
|
||||
cookie.set_expires(OffsetDateTime::now_utc() + expires_in);
|
||||
}
|
||||
|
||||
if let Some(max_age) = self.max_age {
|
||||
|
@ -136,7 +136,7 @@ impl<Err> CookieSessionInner<Err> {
|
|||
let mut cookie = Cookie::named(self.name.clone());
|
||||
cookie.set_value("");
|
||||
cookie.set_max_age(Duration::zero());
|
||||
cookie.set_expires(OffsetDateTime::now() - Duration::days(365));
|
||||
cookie.set_expires(OffsetDateTime::now_utc() - Duration::days(365));
|
||||
|
||||
let val = HeaderValue::from_str(&cookie.to_string()).unwrap();
|
||||
res.headers_mut().append(SET_COOKIE, val);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue