Omaha #3789 removed unnecessary arguments to uengine jetty endpoint

Change-Id: I9442351c05ecf4a67ea05b536ef94bbd26c214f3

Former-commit-id: 9f1eee3bcf4eb5e72c433055d2f2b5727056ee39
This commit is contained in:
Brian Clements 2015-01-15 09:28:26 -06:00
parent abedf22aca
commit 44acb69ede
2 changed files with 2 additions and 4 deletions

View file

@ -20,9 +20,8 @@
location="classpath:edex-uengine.properties" /> location="classpath:edex-uengine.properties" />
<restConfiguration component="jetty" host="0.0.0.0" port="{{env:HTTP_PORT}}" > <restConfiguration component="jetty" host="0.0.0.0" port="{{env:HTTP_PORT}}" >
<componentProperty key="disableStreamCache" value="{{edex.uengine.http.disableStreamCache}}" /> <endpointProperty key="disableStreamCache" value="{{edex.uengine.http.disableStreamCache}}" />
<componentProperty key="chunked" value="{{edex.uengine.http.chunked}}" /> <endpointProperty key="chunked" value="{{edex.uengine.http.chunked}}" />
<componentProperty key="matchOnUriPrefix" value="{{edex.uengine.http.matchOnUriPrefix}}" />
</restConfiguration> </restConfiguration>
<rest path="{{env:HTTP_SERVER_PATH}}"> <rest path="{{env:HTTP_SERVER_PATH}}">

View file

@ -1,4 +1,3 @@
# http properties uengine endpoint will use # http properties uengine endpoint will use
edex.uengine.http.disableStreamCache=true edex.uengine.http.disableStreamCache=true
edex.uengine.http.chunked=false edex.uengine.http.chunked=false
edex.uengine.http.matchOnUriPrefix=true