Juan Hernandez has uploaded a new change for review. Change subject: packaging: Fix properties tag in standalone.xml ......................................................................
packaging: Fix properties tag in standalone.xml In a previous commit (299d26) we added the system-properties tag twice inside the standalone.xml file. It needs to be there only once. Change-Id: I074449a7409b1b4cf090a441518f9c08cd3334ad Bug-Url: https://bugzilla.redhat.com/?????? Signed-off-by: Juan Hernandez <[email protected]> --- M backend/manager/conf/standalone.xml 1 file changed, 4 insertions(+), 4 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/60/13360/1 diff --git a/backend/manager/conf/standalone.xml b/backend/manager/conf/standalone.xml index 2dac5d4..5067ceb 100644 --- a/backend/manager/conf/standalone.xml +++ b/backend/manager/conf/standalone.xml @@ -27,16 +27,16 @@ <extension module="org.jboss.as.webservices"/> <extension module="org.jboss.as.weld"/> </extensions> - <system-properties> - <property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION" value="on"/> - <property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION_MIME_TYPES" value="text/javascript,text/css,text/html,text/xml,text/json,application/x-yaml,application/xml,application/json"/> - </system-properties> <system-properties> <!-- Don't let quartz call home to check for updates: --> <property name="org.quartz.scheduler.skipUpdateCheck" value="true"/> + <!-- Enable compression for html content and REST API: --> + <property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION" value="on"/> + <property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION_MIME_TYPES" value="text/javascript,text/css,text/html,text/xml,text/json,application/x-yaml,application/xml,application/json"/> + </system-properties> <management> -- To view, visit http://gerrit.ovirt.org/13360 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I074449a7409b1b4cf090a441518f9c08cd3334ad Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Juan Hernandez <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
