[
https://issues.apache.org/jira/browse/NIFI-15242?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18039950#comment-18039950
]
Daniel Stieglitz commented on NIFI-15242:
-----------------------------------------
[~exceptionfactory] I am sorry I am just trying to clarify as I no longer see
the stack trace from the broken build in
[#10398|https://github.com/apache/nifi/pull/10398]. From there it seemed the
only issue was with renaming the VAULT_URI property descriptor but the others
renamings were were okay. Is that what you meant or did you mean to revert all
the property descriptor renamings?
> Remove redundant name and display name in the VAULT_URI property descriptor
> found in HashiCorpVaultClientService
> ----------------------------------------------------------------------------------------------------------------
>
> 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: 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}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)