Skip to content

Commit

Permalink
Minor: add version to RuntimeEnv::new deprecation message (#13537)
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored Nov 23, 2024
1 parent fe2da2b commit d9abdad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/execution/src/runtime_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl Debug for RuntimeEnv {
}

impl RuntimeEnv {
#[deprecated(note = "please use `try_new` instead")]
#[deprecated(since = "43.0.0", note = "please use `try_new` instead")]
pub fn new(config: RuntimeConfig) -> Result<Self> {
Self::try_new(config)
}
Expand Down

0 comments on commit d9abdad

Please sign in to comment.