Uploaded image for project: 'JBoss Enterprise Application Platform'
  1. JBoss Enterprise Application Platform
  2. JBEAP-27242

[GSS](7.4.z) WFCORE-6848 - In Domain mode applications are distributed twice to the domain's servers

XMLWordPrintable

      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

            rhn-cservice-bbaranow Bartosz Baranowski
            rhn-support-bmaxwell Brad Maxwell
            Votes:
            0 Vote for this issue
            Watchers:
            7 Start watching this issue

              Created:
              Updated:
              Resolved: