-
Bug
-
Resolution: Done
-
Major
-
7.4.16.GA
-
False
-
None
-
False
-
-
-
-
-
-
-
In Domain mode, applications are unnecessarily distributed twice to the domain's servers. Second extra distribution occurrence consumes time and capacity. This concerns all versions, at least from 7.3.5 to 8.
2024-05-11 17:39:00,831 DEBUG [][,][] [org.jboss.as.server] (management task-1) Received 2 files for
/jboss-eap-7.4/servers/server01/content/3c/a4dcf95f70a1410df182761295f353449c8051 2024-05-11 16:39:00,832 DEBUG [][,][] [org.jboss.as.server] (management task-1) Received file [content] of length 534763624 2024-05-11 16:47:38,617 DEBUG [][,][] [org.jboss.as.server] (management task-1) Received file [content] of length 534763624
EAP 7.4 Update 16 is using WF Core: 15.0.35.Final-redhat-00001 package org.jboss.as.repository; public abstract class RemoteFileRequestAndHandler { 171 private List<File> getChildFiles(final File base) { 172 final List<File> childFiles = new ArrayList<>(); 173 getChildFiles(base, childFiles); 174 return childFiles; 175 } 176 177 private void getChildFiles(final File base, final List<File> childFiles) { 178 for (File child : base.listFiles()) { 179 childFiles.add(child); 180 if (child.isFile() || isEmpty(child)) { 181 childFiles.add(child); 182 } else { 183 getChildFiles(child, childFiles); 184 } 185 } 186 }
The last change to the file was this WFCORE-429 , so Engr will need to review this
- clones
-
JBEAP-27254 [GSS](8.0.z) In Domain mode applications are distributed twice to the domain's servers
- Verified
- is caused by
-
WFCORE-429 Incremental redeployment (single file update) over management API
- Resolved
- is cloned by
-
WFCORE-6848 In Domain mode applications are distributed twice to the domain's servers
- Resolved
- is incorporated by
-
JBEAP-27613 (7.4.z) Upgrade Wildfly Core from 15.0.37.Final-redhat-00001 to 15.0.38.Final-redhat-00001
- Closed