[
https://issues.apache.org/jira/browse/MINIFICPP-1799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Martin Zink updated MINIFICPP-1799:
-----------------------------------
Status: Patch Available (was: In Progress)
https://github.com/apache/nifi-minifi-cpp/pull/1303
> PutGCSObject wrong property name
> --------------------------------
>
> Key: MINIFICPP-1799
> URL: https://issues.apache.org/jira/browse/MINIFICPP-1799
> Project: Apache NiFi MiNiFi C++
> Issue Type: Bug
> Reporter: Martin Zink
> Assignee: Martin Zink
> Priority: Minor
> Time Spent: 10m
> Remaining Estimate: 0h
>
> {code:java}
> const core::Property PutGCSObject::Key(
> core::PropertyBuilder::createProperty("Name of the object.")
> ->withDescription("Name of the object.")
> ->withDefaultValue("${filename}")
> ->supportsExpressionLanguage(true)
> ->build()); {code}
> should be
> {code:java}
> const core::Property PutGCSObject::Key(
> core::PropertyBuilder::createProperty("Key")
> ->withDescription("Name of the object.")
> ->withDefaultValue("${filename}")
> ->supportsExpressionLanguage(true)
> ->build()); {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)