[ 
https://issues.apache.org/jira/browse/MINIFICPP-1799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Zink updated MINIFICPP-1799:
-----------------------------------
    Description: 
{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}

  was:
{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}


> 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)

Reply via email to