mirror of https://github.com/apache/nifi.git
NIFI-7529 Removed OS and Java information from InvokeHttp's UserAgent field so that it's removed regardless of whether or not this field is kept.
This closes #4332
This commit is contained in:
parent
57c7883f64
commit
64b544d5af
|
@ -254,7 +254,7 @@ public class InvokeHTTP extends AbstractProcessor {
|
|||
.displayName("Useragent")
|
||||
.description("The Useragent identifier sent along with each request")
|
||||
.required(false)
|
||||
.defaultValue("Apache Nifi/${nifi.version} (git:${nifi.build.git.commit.id.describe}; Java/${java.version}; ${os.name} ${os.version}; ${os.arch}; https://nifi.apache.org/)")
|
||||
.defaultValue("Apache Nifi/${nifi.version} (git:${nifi.build.git.commit.id.describe}; https://nifi.apache.org/)")
|
||||
.expressionLanguageSupported(ExpressionLanguageScope.FLOWFILE_ATTRIBUTES)
|
||||
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
|
||||
.build();
|
||||
|
|
Loading…
Reference in New Issue