Sega76 commented on a change in pull request #8840:
URL: https://github.com/apache/ignite/pull/8840#discussion_r597788884
##########
File path:
modules/core/src/test/java/org/apache/ignite/internal/processors/performancestatistics/AbstractPerformanceStatisticsTest.java
##########
@@ -42,6 +47,10 @@
/** */
public static final long TIMEOUT = 30_000;
+ /** File performance statistics pattern {@link
FilePerformanceStatisticsReader}. */
+ static final Pattern FILE_PATTERN = Pattern.compile(
Review comment:
fixed
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/util/distributed/DistributedProcess.java
##########
@@ -242,13 +246,20 @@ else if (F.eq(ctx.localNodeId(), p.crdId)) {
*
* @param id Process id.
* @param req Initial request.
+ * @return Future on the result of the finished process.
*/
- public void start(UUID id, I req) {
+ public IgniteInternalFuture<T2<Map<UUID, R>, Map<UUID, Exception>>>
start(UUID id, @Nullable I req) {
Review comment:
fixed
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]