tkalkirill commented on code in PR #902:
URL: https://github.com/apache/ignite-3/pull/902#discussion_r910670427
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/store/FilePageStoreManager.java:
##########
@@ -251,10 +237,10 @@ public FilePageStore getStore(int grpId, int partId)
throws IgniteInternalChecke
* @param cleanFiles Delete files.
*/
void stopAllGroupFilePageStores(boolean cleanFiles) {
- List<GroupPageStoreHolder<FilePageStore>> holders = new
ArrayList<>(groupPageStoreHolders.size());
+ List<List<FilePageStore>> holders = new
ArrayList<>(groupPageStoreHolders.size());
- for (Iterator<GroupPageStoreHolder<FilePageStore>> it =
groupPageStoreHolders.values().iterator(); it.hasNext(); ) {
- GroupPageStoreHolder<FilePageStore> holder = it.next();
+ for (Iterator<List<FilePageStore>> it =
groupPageStoreHolders.values().iterator(); it.hasNext(); ) {
Review Comment:
fix it
--
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]