Pochatkin commented on code in PR #2580:
URL: https://github.com/apache/ignite-3/pull/2580#discussion_r1324228576
##########
modules/page-memory/src/test/java/org/apache/ignite/internal/pagememory/persistence/store/FilePageStoreManagerTest.java:
##########
@@ -159,6 +157,14 @@ void testInitialize() throws Exception {
}
}
+ private static void ensure(GroupPartitionPageStore<FilePageStore>
filePageStore) {
+ try {
+ filePageStore.pageStore().ensure();
+ } catch (IgniteInternalCheckedException e) {
+ throw new RuntimeException(e);
Review Comment:
We have no any catch block in test where this method calls,
IgniteInternalCheckedException here just throws to JUnit executor. I can
convert it to common loop, but in this case it dosn't matter.
--
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]