Repository: incubator-nifi
Updated Branches:
  refs/heads/develop 9033173eb -> 953d9e59a


NIFI-544: Compress HTTP Responses for PUT/POST, as well as GET


Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/387a9719
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/387a9719
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/387a9719

Branch: refs/heads/develop
Commit: 387a97193189f27b112c2b87d9c08fb61e7acd54
Parents: 6fa5968
Author: Mark Payne <marka...@hotmail.com>
Authored: Fri Apr 24 22:01:02 2015 -0400
Committer: Mark Payne <marka...@hotmail.com>
Committed: Fri Apr 24 22:01:02 2015 -0400

----------------------------------------------------------------------
 .../nifi-web/nifi-web-api/src/main/webapp/WEB-INF/web.xml        | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/387a9719/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/webapp/WEB-INF/web.xml
----------------------------------------------------------------------
diff --git 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/webapp/WEB-INF/web.xml
 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/webapp/WEB-INF/web.xml
index 2ee9670..e7a0aee 100644
--- 
a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/webapp/WEB-INF/web.xml
+++ 
b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/webapp/WEB-INF/web.xml
@@ -88,6 +88,10 @@
     <filter>
         <filter-name>gzipCompressionFilter</filter-name>
         <filter-class>org.eclipse.jetty.servlets.GzipFilter</filter-class>
+               <init-param>
+            <param-name>methods</param-name>
+            <param-value>get,post,put</param-value>
+        </init-param>
     </filter>
     <filter-mapping>
         <filter-name>gzipCompressionFilter</filter-name>

Reply via email to