tkalkirill commented on code in PR #902:
URL: https://github.com/apache/ignite-3/pull/902#discussion_r910666749


##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/store/FilePageStoreManager.java:
##########
@@ -312,25 +298,22 @@ private Path ensureGroupWorkDir(String grpName) throws 
IgniteInternalCheckedExce
         return groupWorkDir;
     }
 
-    private GroupPageStoreHolder<FilePageStore> createGroupFilePageStoreHolder(
+    private List<FilePageStore> createGroupFilePageStoreHolder(
             String grpName,
             int partitions
     ) throws IgniteInternalCheckedException {
         Path groupWorkDir = ensureGroupWorkDir(grpName);
 
         FilePageStoreFactory filePageStoreFactory = new 
FilePageStoreFactory(filePageStoreFileIoFactory, pageSize);
 
-        FilePageStore idxFilePageStore = 
filePageStoreFactory.createPageStore(TYPE_IDX, 
groupWorkDir.resolve(INDEX_FILE_NAME));
-
         FilePageStore[] partitionFilePageStores = new 
FilePageStore[partitions];

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]

Reply via email to