timoninmaxim commented on code in PR #10674:
URL: https://github.com/apache/ignite/pull/10674#discussion_r1180071745
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotManager.java:
##########
@@ -1408,7 +1408,8 @@ else if (!F.isEmpty(req.warnings())) {
}
return new SnapshotOperationResponse();
- }, cctx.kernalContext().pools().getSnapshotExecutorService());
+ },
Optional.ofNullable(cctx.kernalContext().pools().getSnapshotExecutorService())
Review Comment:
Looks very strange. In this place snpExecSvc must not be null. Let' check it
in `createSnapshot`?
--
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]