This is an automated email from the ASF dual-hosted git repository.
aboda pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/main by this push:
new 5ef439fd9 MINIFICPP-1799 Fix PutGCSObject::Key property name
5ef439fd9 is described below
commit 5ef439fd9f98cf4fe8199c513f18c4ca50e2fbeb
Author: Martin Zink <[email protected]>
AuthorDate: Wed Apr 13 16:36:34 2022 +0200
MINIFICPP-1799 Fix PutGCSObject::Key property name
Signed-off-by: Arpad Boda <[email protected]>
This closes #1303
---
extensions/gcp/processors/PutGCSObject.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extensions/gcp/processors/PutGCSObject.cpp
b/extensions/gcp/processors/PutGCSObject.cpp
index 45d898d9b..9fadfedfe 100644
--- a/extensions/gcp/processors/PutGCSObject.cpp
+++ b/extensions/gcp/processors/PutGCSObject.cpp
@@ -46,7 +46,7 @@ const core::Property PutGCSObject::Bucket(
->build());
const core::Property PutGCSObject::Key(
- core::PropertyBuilder::createProperty("Name of the object.")
+ core::PropertyBuilder::createProperty("Key")
->withDescription("Name of the object.")
->withDefaultValue("${filename}")
->supportsExpressionLanguage(true)