Skip to content

Commit fe09e5f

Browse files
authored
chore: Fix typos (#930)
1 parent 3d03213 commit fe09e5f

13 files changed

Lines changed: 68 additions & 68 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ All notable changes to this project will be documented in this file.
536536
### Added
537537

538538
- Support for 1.15.0 ([#125])
539-
- Sensitive property key is setable via a secret ([#125])
539+
- Sensitive property key is settable via a secret ([#125])
540540

541541
### Changed
542542

docs/modules/nifi/pages/usage_guide/custom-components.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ binaryData:
153153
custom-nifi-processor-1.0.0.nar: ...
154154
----
155155

156-
The Python script is taken from {nifi-docs-flowfile-source}[the offical NiFi Python developer guide].
156+
The Python script is taken from {nifi-docs-flowfile-source}[the official NiFi Python developer guide].
157157

158158
Afterwards, we need to mount the ConfigMap as described in xref:nifi:usage_guide/extra-volumes.adoc[] and extend the `nifi.properties` file:
159159

docs/modules/nifi/pages/usage_guide/security.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ allow := {
364364
----
365365
<1> The default rule should return `"resourceNotFound": true`. If this is not set, NiFi's access policy inheritance will not work. Any values for the `allowed` field in the response will be ignored.
366366
<2> A rule that grants all users access to the root process group and thus to all components in the NiFi instance.
367-
<3> A rule that denies access to a specific process group for the user "alice". For this process group the default rego rule will not be applied and NiFi's component inhertiance will not be used. All child components of this process group will also be authorized based on this rule unless a more granular rule overrides it.
367+
<3> A rule that denies access to a specific process group for the user "alice". For this process group the default rego rule will not be applied and NiFi's component inheritance will not be used. All child components of this process group will also be authorized based on this rule unless a more granular rule overrides it.
368368

369369
[#communication-between-nifi-nodes]
370370
==== Communication between NiFi nodes

docs/modules/nifi/pages/usage_guide/writing-to-iceberg-tables.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ and `Hadoop Configuration Resources` to `/stackable/userdata/nifi-hive-s3-config
116116
Afterwards you can create the `PutIceberg` processor and configure the `HiveCatalogService`.
117117
Also set `Catalog Namespace` to your schema name and the `Table Name`.
118118

119-
For the `File Format` it is recommened to use `PARQUET` or `ORC` rather than `AVRO` for performance reasons, but you can leave it empty or choose your desired format.
119+
For the `File Format` it is recommended to use `PARQUET` or `ORC` rather than `AVRO` for performance reasons, but you can leave it empty or choose your desired format.
120120

121121
You should end up with the following `PutIceberg` processor:
122122

extra/crds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ spec:
150150
enabled:
151151
default: true
152152
description: |-
153-
Wether the Kubernetes Job should be created, defaults to true. It can be helpful to disable
153+
Whether the Kubernetes Job should be created, defaults to true. It can be helpful to disable
154154
the Job, e.g. when you configOverride an authentication mechanism, which the Job currently
155155
can't use to authenticate against NiFi.
156156
type: boolean

rust/operator-binary/src/config/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ pub fn build_nifi_properties(
442442
"2".to_string(),
443443
);
444444

445-
// Volatile Provenance Respository Properties
445+
// Volatile Provenance Repository Properties
446446
properties.insert(
447447
"nifi.provenance.repository.buffer.size".to_string(),
448448
"100000".to_string(),

rust/operator-binary/src/controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ async fn build_node_rolegroup_statefulset(
964964
// uses RC2. Thus, the keytool usage here LGTM (no alias trickery) and has my nod of approval.
965965
prepare_args.extend(vec![
966966
// The source directory is a secret-op mount and we do not want to write / add anything in there
967-
// Therefore we import all the contents to a truststore in "writeable" empty dirs.
967+
// Therefore we import all the contents to a truststore in "writable" empty dirs.
968968
// Keytool is only barking if a password is not set for the destination truststore (which we set)
969969
// and do provide an empty password for the source truststore coming from the secret-operator.
970970
// Using no password will result in a warning.

rust/operator-binary/src/crd/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ pub fn default_allow_all() -> bool {
322322
#[derive(Clone, Debug, Deserialize, JsonSchema, PartialEq, Serialize)]
323323
#[serde(rename_all = "camelCase")]
324324
pub struct CreateReportingTaskJob {
325-
/// Wether the Kubernetes Job should be created, defaults to true. It can be helpful to disable
325+
/// Whether the Kubernetes Job should be created, defaults to true. It can be helpful to disable
326326
/// the Job, e.g. when you configOverride an authentication mechanism, which the Job currently
327327
/// can't use to authenticate against NiFi.
328328
#[serde(default = "CreateReportingTaskJob::default_enabled")]

rust/operator-binary/src/operations/upgrade.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ pub async fn cluster_version_update_state(
8888
// we requeue to wait until a full stop has been performed.
8989
if target_replicas == 0 && current_replicas > 0 {
9090
tracing::info!(
91-
"Cluster is performing a full restart at the moment and still shutting down, remaining replicas: [{}] - requeueing to wait for shutdown to finish",
91+
"Cluster is performing a full restart at the moment and still shutting down, remaining replicas: [{}] - requeuing to wait for shutdown to finish",
9292
current_replicas
9393
);
9494
return Ok(ClusterVersionUpdateState::UpdateInProgress);

rust/operator-binary/src/product_logging.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub const NIFI_LOG_FILE: &str = "nifi.log4j.xml";
3939
const CONSOLE_CONVERSION_PATTERN: &str = "%date %level [%thread] %logger{40} %msg%n";
4040
// This is required to remove double entries in the nifi.log4j.xml as well as nested
4141
// console output like: "<timestamp> <loglevel> ... <timestamp> <loglevel> ...
42-
const ADDITONAL_LOGBACK_CONFIG: &str = r#" <appender name="PASSTHROUGH" class="ch.qos.logback.core.ConsoleAppender">
42+
const ADDITIONAL_LOGBACK_CONFIG: &str = r#" <appender name="PASSTHROUGH" class="ch.qos.logback.core.ConsoleAppender">
4343
<encoder>
4444
<pattern>%msg%n</pattern>
4545
</encoder>
@@ -78,7 +78,7 @@ pub fn extend_role_group_config_map(
7878
.value as u32,
7979
CONSOLE_CONVERSION_PATTERN,
8080
log_config,
81-
Some(ADDITONAL_LOGBACK_CONFIG),
81+
Some(ADDITIONAL_LOGBACK_CONFIG),
8282
),
8383
);
8484
}

0 commit comments

Comments
 (0)