You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2022/06/27 15:11:08 UTC

[nifi-minifi-cpp] 03/03: MINIFICPP-1873 - Fix state management path config typo in minifi.properties file

This is an automated email from the ASF dual-hosted git repository.

martinzink pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git

commit 77ec00b675bafd3fa9fe14d3537b6e3a8bd5ffd7
Author: Arpad Boda <ab...@apache.org>
AuthorDate: Mon Jun 27 16:20:17 2022 +0200

    MINIFICPP-1873 - Fix state management path config typo in minifi.properties file
    
    Closes #1358
    
    Signed-off-by: Martin Zink <ma...@apache.org>
---
 CONFIGURE.md           | 4 ++--
 conf/minifi.properties | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/CONFIGURE.md b/CONFIGURE.md
index 1d7f25f9e..e8c77d46c 100644
--- a/CONFIGURE.md
+++ b/CONFIGURE.md
@@ -174,7 +174,7 @@ separate "subdatabase" is created under the name `"flowfile"`.
      in minifi.properties
      nifi.flowfile.repository.directory.default=minifidb://${MINIFI_HOME}/agent_state/flowfile
 	 nifi.database.content.repository.directory.default=minifidb://${MINIFI_HOME}/agent_state/content
-	 nifi.state.manangement.provider.local.path=minifidb://${MINIFI_HOME}/agent_state/processor_states
+	 nifi.state.management.provider.local.path=minifidb://${MINIFI_HOME}/agent_state/processor_states
 
 We should not simultaneously use the same directory with and without the `minifidb://` scheme.
 Moreover the `"default"` name is restricted and should not be used.
@@ -184,7 +184,7 @@ Moreover the `"default"` name is restricted and should not be used.
      nifi.flowfile.repository.directory.default=minifidb://${MINIFI_HOME}/agent_state/flowfile
 	 nifi.database.content.repository.directory.default=${MINIFI_HOME}/agent_state
 	 ^ error: using the same database directory without the "minifidb://" scheme
-	 nifi.state.manangement.provider.local.path=minifidb://${MINIFI_HOME}/agent_state/default
+	 nifi.state.management.provider.local.path=minifidb://${MINIFI_HOME}/agent_state/default
 	 ^ error: "default" is restricted
 
 ### Configuring Repository encryption
diff --git a/conf/minifi.properties b/conf/minifi.properties
index 8ba1d3975..0d51905db 100644
--- a/conf/minifi.properties
+++ b/conf/minifi.properties
@@ -48,7 +48,7 @@ nifi.content.repository.class.name=DatabaseContentRepository
 ## that implements CoreComponentStateManagementProvider
 ## (e.g. an instance of RocksDbPersistableKeyValueStoreService or UnorderedMapPersistableKeyValueStoreService)
 #nifi.state.management.provider.local=
-#nifi.state.manangement.provider.local.path=
+#nifi.state.management.provider.local.path=
 ## To make the default state storage persist every state change, set this to true
 ## this comes at a performance penalty, but makes sure no state is lost even on unclean shutdowns
 #nifi.state.management.provider.local.always.persist=true