This is an automated email from the ASF dual-hosted git repository. martinzink pushed a commit to branch minifi-api-property in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit a1d8247d17bf7a7592d5131b729d4149ed5bd904 Author: Martin Zink <[email protected]> AuthorDate: Wed Mar 12 13:03:51 2025 +0100 EndpointOverrideURL should have a NON_BLANK_VALIDATOR --- extensions/aws/processors/S3Processor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/aws/processors/S3Processor.h b/extensions/aws/processors/S3Processor.h index 3525e8042..ae3829383 100644 --- a/extensions/aws/processors/S3Processor.h +++ b/extensions/aws/processors/S3Processor.h @@ -136,6 +136,7 @@ class S3Processor : public core::ProcessorImpl { "region, but this property overrides the selected endpoint URL, allowing use " "with other S3-compatible endpoints.") .supportsExpressionLanguage(true) + .withValidator(core::StandardPropertyTypes::NON_BLANK_VALIDATOR) .build(); EXTENSIONAPI static constexpr auto ProxyHost = core::PropertyDefinitionBuilder<>::createProperty("Proxy Host") .withDescription("Proxy host name or IP")
