NIFI-11439 Corrected Checkstyle violation on GCS Property

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
Paul Grey 2023-04-13 13:53:25 -04:00 committed by exceptionfactory
parent ee24df2830
commit cd685671c8
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,8 @@ public abstract class AbstractGCSProcessor extends AbstractGCPProcessor<Storage,
public static final PropertyDescriptor STORAGE_API_URL = new PropertyDescriptor
.Builder().name("storage-api-url")
.displayName("Storage API URL")
.description("Overrides the default storage URL. Configuring an alternative Storage API URL also overrides the HTTP Host header on requests as described in the Google documentation for Private Service Connections.")
.description("Overrides the default storage URL. Configuring an alternative Storage API URL also overrides the "
+ "HTTP Host header on requests as described in the Google documentation for Private Service Connections.")
.addValidator(StandardValidators.URL_VALIDATOR)
.expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
.required(false)