shishkovilja commented on code in PR #11489: URL: https://github.com/apache/ignite/pull/11489#discussion_r1722920947
########## modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/persistence/db/LongDestroyDurableBackgroundTaskTest.java: ########## @@ -376,7 +376,7 @@ private void validateIndexes(Ignite ignite) { taskArg.checkSizes(true); ValidateIndexesTaskResult taskRes = - ignite.compute().execute(ValidateIndexesTask.class.getName(), new VisorTaskArgument<>(nodeIds, taskArg, false)); + ignite.compute().execute(new ValidateIndexesTask(), new VisorTaskArgument<>(nodeIds, taskArg, false)).result(); Review Comment: ```suggestion ignite.compute().execute(ValidateIndexesTask.class, new VisorTaskArgument<>(nodeIds, taskArg, false)) .result(); ``` -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org