[
https://issues.redhat.com/browse/WFWIP-287?page=com.atlassian.jira.plugin...
]
Radoslav Husar commented on WFWIP-287:
--------------------------------------
I don't think we need a separate RFE as this is expected to be resolved in the next
release with SR FT reimplementation – there will be RFE for the spec/impl upgrade.
MP Fault Tolerance - Hystrix is initialized by random module from EAR
----------------------------------------------------------------------
Key: WFWIP-287
URL:
https://issues.redhat.com/browse/WFWIP-287
Project: WildFly WIP
Issue Type: Bug
Components: MP Config
Reporter: Miroslav Novak
Assignee: Radoslav Husar
Priority: Critical
If EAR container 2 MP FT modules where each has different configuration for Hystrix then
it is initialized by randomly and does not respect module deployment order defined in
{{META-INF/application.xml}}:
{code}
<?xml version="1.0" encoding="UTF-8"?>
<application
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/application_6.xsd"
version="6">
<initialize-in-order>true</initialize-in-order>
<module>
<web>
<web-uri>first-module.war</web-uri>
<context-root>first-module</context-root>
</web>
</module>
<module>
<web>
<web-uri>second-module.war</web-uri>
<context-root>second-module</context-root>
</web>
</module>
</application>
{code}
It's expected that first-module would configured Hystric based on above
application.xml.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)