devmadhuu opened a new pull request, #9707: URL: https://github.com/apache/ozone/pull/9707
## What changes were proposed in this pull request? Containers missing in OM showed an accumulated pipeline list instead of individual pipelines. The List<Pipeline> was created outside the loop, so all containers shared the same list. Moved List<Pipeline> pipelines = new ArrayList<>(); inside the forEach loop so each container gets its own list. ## What is the link to the Apache JIRA https://issues.apache.org/jira/browse/HDDS-14368 ## How was this patch tested? This patch was tested by writing junit tests in TestContainerEndPoint and also manually using docker cluster locally. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
