[
https://issues.apache.org/jira/browse/NIFI-15242?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18039980#comment-18039980
]
ASF subversion and git services commented on NIFI-15242:
--------------------------------------------------------
Commit 6bc8d53453a7f96a96ca54c2cce2a1e9449a45ef in nifi's branch
refs/heads/main from dan-s1
[ https://gitbox.apache.org/repos/asf?p=nifi.git;h=6bc8d53453 ]
NIFI-15242 Reverted property renaming in HashiCorpVaultClientService (#10555)
Signed-off-by: David Handermann <[email protected]>
> Remove redundant name in the VAULT_URI property descriptor found in
> HashiCorpVaultClientService and revert renaming of all vault related
> properties
> ---------------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: NIFI-15242
> URL: https://issues.apache.org/jira/browse/NIFI-15242
> Project: Apache NiFi
> Issue Type: Bug
> Reporter: Daniel Stieglitz
> Assignee: Daniel Stieglitz
> Priority: Minor
> Fix For: 2.7.0
>
> Time Spent: 1h 10m
> Remaining Estimate: 0h
>
> Currently the property descriptor has
> {code:java}
> PropertyDescriptor VAULT_URI = new PropertyDescriptor.Builder()
> .name("Vault URI")
> .name("vault.uri")
> .displayName("Vault URI"){code}
> and it should look like
> {code:java}
> PropertyDescriptor VAULT_URI = new PropertyDescriptor.Builder()
> .name("vault.uri")
> .displayName("Vault URI"){code}
> in addition this line in the migrateProperties method should be removed as it
> is unnecessary (since its redundant):
> {code:java}
> config.renameProperty("vault.uri", VAULT_URI.getName());{code}
> Lastly all renaming of vault specific properties made in NIFI-15020 should be
> reverted in order to have an appropriate mapping to a
> {{HashiCorpVaultConfiguration.}}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)