mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 01:58:32 +00:00
NIFI-10276 Support database option for Registry Flow Provider in Docker
This closes #6244 Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
99a0c05070
commit
0afdd32bb5
@ -35,6 +35,9 @@ case ${NIFI_REGISTRY_FLOW_PROVIDER} in
|
|||||||
file)
|
file)
|
||||||
xmlstarlet ed --inplace -u "${property_xpath}/class" -v "org.apache.nifi.registry.provider.flow.FileSystemFlowPersistenceProvider" "${providers_file}"
|
xmlstarlet ed --inplace -u "${property_xpath}/class" -v "org.apache.nifi.registry.provider.flow.FileSystemFlowPersistenceProvider" "${providers_file}"
|
||||||
;;
|
;;
|
||||||
|
database)
|
||||||
|
xmlstarlet ed --inplace -u "${property_xpath}/class" -v "org.apache.nifi.registry.provider.flow.DatabaseFlowPersistenceProvider" "${providers_file}"
|
||||||
|
;;
|
||||||
git)
|
git)
|
||||||
xmlstarlet ed --inplace -u "${property_xpath}/class" -v "org.apache.nifi.registry.provider.flow.git.GitFlowPersistenceProvider" "${providers_file}"
|
xmlstarlet ed --inplace -u "${property_xpath}/class" -v "org.apache.nifi.registry.provider.flow.git.GitFlowPersistenceProvider" "${providers_file}"
|
||||||
add_property "Remote To Push" "${NIFI_REGISTRY_GIT_REMOTE:-}"
|
add_property "Remote To Push" "${NIFI_REGISTRY_GIT_REMOTE:-}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user