You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2020/12/23 15:40:05 UTC

[GitHub] [ignite] antkr commented on a change in pull request #8581: IGNITE-11110 fixed stop case with collision SPI enabled.

antkr commented on a change in pull request #8581:
URL: https://github.com/apache/ignite/pull/8581#discussion_r548018542



##########
File path: modules/core/src/main/java/org/apache/ignite/internal/processors/job/GridJobProcessor.java
##########
@@ -377,7 +377,10 @@ public GridJobProcessor(GridKernalContext ctx) {
     /** {@inheritDoc} */
     @Override public void stop(boolean cancel) {
         // Clear collections.
-        activeJobs.clear();
+        if (jobAlwaysActivate)
+            activeJobs.clear();

Review comment:
       Makes sense, pushed an update.




----------------------------------------------------------------
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:
users@infra.apache.org