mirror of https://github.com/fafhrd91/actix-web
undeprecate `App::data_factory`
This commit is contained in:
parent
a2d5c5a058
commit
38b7654d30
|
@ -8,6 +8,7 @@
|
||||||
### Changed
|
### Changed
|
||||||
* Rename `Accept::{mime_precedence => ranked}`. [#2480]
|
* Rename `Accept::{mime_precedence => ranked}`. [#2480]
|
||||||
* Rename `Accept::{mime_preference => preference}`. [#2480]
|
* Rename `Accept::{mime_preference => preference}`. [#2480]
|
||||||
|
* Un-deprecate `App::data_factory`. [#????]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Accept wildcard `*` items in `AcceptLanguage`. [#2480]
|
* Accept wildcard `*` items in `AcceptLanguage`. [#2480]
|
||||||
|
|
|
@ -142,10 +142,6 @@ where
|
||||||
/// Add application data factory. This function is similar to `.data()` but it accepts a
|
/// Add application data factory. This function is similar to `.data()` but it accepts a
|
||||||
/// "data factory". Data values are constructed asynchronously during application
|
/// "data factory". Data values are constructed asynchronously during application
|
||||||
/// initialization, before the server starts accepting requests.
|
/// initialization, before the server starts accepting requests.
|
||||||
#[deprecated(
|
|
||||||
since = "4.0.0",
|
|
||||||
note = "Construct data value before starting server and use `.app_data(Data::new(val))` instead."
|
|
||||||
)]
|
|
||||||
pub fn data_factory<F, Out, D, E>(mut self, data: F) -> Self
|
pub fn data_factory<F, Out, D, E>(mut self, data: F) -> Self
|
||||||
where
|
where
|
||||||
F: Fn() -> Out + 'static,
|
F: Fn() -> Out + 'static,
|
||||||
|
|
Loading…
Reference in New Issue