Skip to content

Commit 6f125a3

Browse files
committed
update op-rs
1 parent 4f98093 commit 6f125a3

File tree

4 files changed

+49
-49
lines changed

4 files changed

+49
-49
lines changed

Cargo.lock

Lines changed: 45 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/helm/nifi-operator/crds/crds.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ spec:
660660
add: []
661661
remove: []
662662
removeRegex: []
663-
description: Allows overriding JVM arguments.
663+
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
664664
properties:
665665
add:
666666
default: []
@@ -1144,7 +1144,7 @@ spec:
11441144
add: []
11451145
remove: []
11461146
removeRegex: []
1147-
description: Allows overriding JVM arguments.
1147+
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
11481148
properties:
11491149
add:
11501150
default: []

rust/operator-binary/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ mod tests {
867867
let merged_config = nifi.merged_config(&role, "default").unwrap();
868868
let nodes = nifi.spec.nodes.unwrap();
869869
let (role_java_common_config, role_group_java_common_config) = nodes
870-
.merged_product_specific_common_configs("default")
870+
.get_product_specific_common_configs("default")
871871
.unwrap();
872872

873873
build_bootstrap_conf(

rust/operator-binary/src/controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ pub async fn reconcile_nifi(
559559
let proxy_hosts = get_proxy_hosts(client, nifi, &updated_role_service).await?;
560560

561561
let (role_java_common_config, role_group_java_common_config) = role
562-
.merged_product_specific_common_configs(rolegroup_name)
562+
.get_product_specific_common_configs(rolegroup_name)
563563
.context(GetMergedJvmArgumentOverridesSnafu)?;
564564
let rg_configmap = build_node_rolegroup_config_map(
565565
nifi,

0 commit comments

Comments
 (0)