fgerlits commented on code in PR #1965:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1965#discussion_r2189437263
##########
extensions/standard-processors/processors/PutTCP.h:
##########
@@ -71,14 +71,11 @@ class PutTCP final : public core::ProcessorImpl {
.withValidator(core::StandardPropertyValidators::TIME_PERIOD_VALIDATOR)
.withDefaultValue("15 seconds")
.isRequired(true)
- .supportsExpressionLanguage(true)
.build();
EXTENSIONAPI static constexpr auto Timeout =
core::PropertyDefinitionBuilder<>::createProperty("Timeout")
.withDescription("The timeout for connecting to and communicating with
the destination.")
.withValidator(core::StandardPropertyValidators::TIME_PERIOD_VALIDATOR)
- .withDefaultValue("15 seconds")
Review Comment:
Why is this default value removed? If we want to remove it, it should be
removed from PROCESSORS.md, too.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]