diff options
author | Rob Daugherty <rd472p@att.com> | 2017-11-14 10:40:11 -0500 |
---|---|---|
committer | Rob Daugherty <rd472p@att.com> | 2017-11-14 10:40:11 -0500 |
commit | d611dcf8ef0656a1eca6a2a484aed99b59c2c6bc (patch) | |
tree | 022454f16c294bdf7ecc75601d16505b82394f1b /adapters/mso-workflow-message-adapter/WebContent/WEB-INF/web.xml | |
parent | c407a506a436c103cdd57a30f4c5d1eefc18b3d3 (diff) |
Fix init errors in WorkflowMessageAdapter
When the workflow message adapter comes up, it throws a
FileNotFoundException because cadi.properties is absent.
This file is related to AAF, which is not in scope for
the Amsterdam release.
Issue: SO-341
Change-Id: I27239e215a523f8535d49d1888acc72deb35b270
Signed-off-by: Rob Daugherty <rd472p@att.com>
Diffstat (limited to 'adapters/mso-workflow-message-adapter/WebContent/WEB-INF/web.xml')
-rw-r--r-- | adapters/mso-workflow-message-adapter/WebContent/WEB-INF/web.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/adapters/mso-workflow-message-adapter/WebContent/WEB-INF/web.xml b/adapters/mso-workflow-message-adapter/WebContent/WEB-INF/web.xml index e920281508..18df807b85 100644 --- a/adapters/mso-workflow-message-adapter/WebContent/WEB-INF/web.xml +++ b/adapters/mso-workflow-message-adapter/WebContent/WEB-INF/web.xml @@ -14,7 +14,11 @@ </context-param> <context-param> <param-name>mso.configuration</param-name> - <param-value>MSO_PROP_WORKFLOW_MESSAGE_ADAPTER=mso.workflow-message-adapter.properties,MSO_PROP_TOPOLOGY=topology.properties,MSO_PROP_AAF=cadi.properties</param-value> + <param-value>MSO_PROP_WORKFLOW_MESSAGE_ADAPTER=mso.workflow-message-adapter.properties,MSO_PROP_TOPOLOGY=topology.properties</param-value> + </context-param> + <context-param> + <param-name>mso.cloud_config.configuration</param-name> + <param-value>cloud_config.json=2</param-value> </context-param> <context-param> <param-name>resteasy.resources</param-name> |