-
Bug
-
Resolution: Done
-
Critical
-
7.1.2.GA
The problem only occurs when backup mode (--backup flag) is on, and it actually is unrelated to patching. (I only noticed it when patching because that's usually when I restart the host.) I will attach an example you can use to verify the bug.
Below is where I think the problem is:
if (endRoot.hasDefined(SERVER_GROUP)) { for (final Property serverGroup : endRoot.get(SERVER_GROUP).asPropertyList()) { if (serverGroup.getValue().hasDefined(deploymentElement.getKey(), deploymentElement.getValue())) { affectedGroups.add(serverGroup.getName()); relevantDeployments.add(deploymentElement.getValue()); } } }
It should be like this:
if (endRoot.hasDefined(SERVER_GROUP)) { for (final Property serverGroup : endRoot.get(SERVER_GROUP).asPropertyList()) { if (serverGroup.getValue().hasDefined(deploymentElement.getKey(), deploymentElement.getValue())) { if (serversByGroup.containsKey(serverGroup.getName())) { affectedGroups.add(serverGroup.getName()); } relevantDeployments.add(deploymentElement.getValue()); } } }
- clones
-
WFCORE-3944 Backup slave not reconnecting after master shutdown
- Resolved
- is incorporated by
-
JBEAP-14910 (7.1.z) Upgrade WildFly Core to 3.0.17.Final-redhat-1
- Closed