ptupitsyn commented on code in PR #3920:
URL: https://github.com/apache/ignite-3/pull/3920#discussion_r1639558436
##########
modules/compute/src/main/java/org/apache/ignite/internal/compute/state/InMemoryComputeStateMachine.java:
##########
@@ -139,6 +139,8 @@ private void changeJobState(UUID jobId, Function<JobState,
JobState> newStateFun
JobState currentState = currentStatus.state();
JobState newState = newStateFunction.apply(currentState);
+ System.out.println("changeJobState currentState: " + currentState
+ ", newState: " + newState);
Review Comment:
Good catch, removed.
--
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]