This is an automated email from the ASF dual-hosted git repository.
joewitt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 77078a8 NIFI-7304 resolving a contrib check issue with line length
77078a8 is described below
commit 77078a85d921070c24903b6e79aa20e0493a7f9b
Author: Joe Witt <[email protected]>
AuthorDate: Tue Jul 14 13:30:53 2020 -0700
NIFI-7304 resolving a contrib check issue with line length
---
.../src/main/java/org/apache/nifi/web/server/JettyServer.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/JettyServer.java
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/JettyServer.java
index 4422612..5b50c40 100644
---
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/JettyServer.java
+++
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-jetty/src/main/java/org/apache/nifi/web/server/JettyServer.java
@@ -676,7 +676,9 @@ public class JettyServer implements NiFiServer,
ExtensionUiLoader {
}
/**
- * Adds configurable filters relating to preventing denial of service
attacks to the given context. Currently, this implementation adds {@link
org.eclipse.jetty.servlets.DoSFilter} and {@link ContentLengthFilter} filters.
+ * Adds configurable filters relating to preventing denial of service
attacks to the given context.
+ * Currently, this implementation adds
+ * {@link org.eclipse.jetty.servlets.DoSFilter} and {@link
ContentLengthFilter} filters.
*
* @param path path spec for filters ({@code /*} by convention in
this class)
* @param webAppContext context to which filters will be added