CharlesQueiroz opened a new pull request, #7844: URL: https://github.com/apache/cloudstack/pull/7844
### Description This change replaces Hashtable with LinkedHashMap in the `createIsoResponse` method of `ViewResponseHelper`. This modification is to maintain the insertion order of entries, which isn't the case with Hashtable. This solves the problem described here: https://github.com/apache/cloudstack/issues/7278 Related to the ordering of the ISOs table in CloudStack. Currently, the order is not maintained because, when using a Hashtable, the insertion order gets lost when it tries to create the list on the API side. ### Types of changes - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] New feature (non-breaking change which adds functionality) - [x] Bug fix (non-breaking change which fixes an issue) - [ ] Enhancement (improves an existing feature and functionality) - [ ] Cleanup (Code refactoring and cleanup, that may add test cases) #### Bug Severity - [ ] BLOCKER - [ ] Critical - [ ] Major - [x] Minor - [ ] Trivial <!-- Please read the [CONTRIBUTING](https://github.com/apache/cloudstack/blob/main/CONTRIBUTING.md) document --> -- 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]
