You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the component to create is a custom component, the method to create the component is called twice (for both cases: if it is instance of AbstractDockerizer or java component ). First, component is created when this condition is true else if(this.customContainers.containsKey(e)) { ....
And then again, inside the next condition: else if(this.customContainers.containsKey(e)) {...
Though the createContainerWithRemoveAllPrevs() removes the containers with the same name first, so the right number of containers are created. But when there are a lot of containers are to be created with image sizes (like in my usecase), then it takes double the time to create those components.
The text was updated successfully, but these errors were encountered:
When the component to create is a custom component, the method to create the component is called twice (for both cases: if it is instance of AbstractDockerizer or java component ). First, component is created when this condition is true
else if(this.customContainers.containsKey(e)) { ....
And then again, inside the next condition:
else if(this.customContainers.containsKey(e)) {...
Though the
createContainerWithRemoveAllPrevs()
removes the containers with the same name first, so the right number of containers are created. But when there are a lot of containers are to be created with image sizes (like in my usecase), then it takes double the time to create those components.The text was updated successfully, but these errors were encountered: