Skip to content

Commit 76dd9bd

Browse files
committed
chore: Remove prefix in
1 parent f3df803 commit 76dd9bd

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

crates/stackable-operator/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313
- BREAKING: Change signature of `ContainerBuilder::add_env_vars` from `Vec<EnvVar>` to `IntoIterator<Item = EnvVar>` ([#1163]).
14+
- BREAKING: Remove `EXPERIMENTAL_` prefix in `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY`
1415

1516
[#1163]: https://github.com/stackabletech/operator-rs/pull/1163
1617

crates/stackable-operator/src/product_config_utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ use tracing::{debug, error, warn};
99

1010
use crate::role_utils::{CommonConfiguration, Role};
1111

12-
pub const CONFIG_OVERRIDE_FILE_HEADER_KEY: &str = "EXPERIMENTAL_FILE_HEADER";
13-
pub const CONFIG_OVERRIDE_FILE_FOOTER_KEY: &str = "EXPERIMENTAL_FILE_FOOTER";
12+
pub const CONFIG_OVERRIDE_FILE_HEADER_KEY: &str = "FILE_HEADER";
13+
pub const CONFIG_OVERRIDE_FILE_FOOTER_KEY: &str = "FILE_FOOTER";
1414

1515
type Result<T, E = Error> = std::result::Result<T, E>;
1616

0 commit comments

Comments
 (0)