We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6cae70 commit 3ebcc82Copy full SHA for 3ebcc82
crates/stackable-operator/src/role_utils.rs
@@ -219,9 +219,12 @@ impl JvmArgumentOverrides {
219
}
220
221
222
- /// Returns all arguments that should be passed to the JVM.
+ /// Called on **merged** [`JvmArgumentOverrides`}, returns all arguments that should be passed to the JVM.
223
///
224
- /// **Can only be called on merged config, it will panic otherwise**
+ /// **Can only be called on merged config, it will panic otherwise!**
225
+ ///
226
+ /// We are panicking (instead of returning an Error), because this is not the users fault, but
227
+ /// the operator is doing things wrong
228
pub fn effective_jvm_config_after_merging(&self) -> &Vec<String> {
229
assert!(
230
self.remove.is_empty(),
0 commit comments