You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/06/10 18:32:33 UTC

incubator-ignite git commit: #ignite-1005: make updater thread daemon.

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-1005 [created] 1c0fa5e33


#ignite-1005: make updater thread daemon.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/1c0fa5e3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/1c0fa5e3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/1c0fa5e3

Branch: refs/heads/ignite-1005
Commit: 1c0fa5e33d7b8c7a13aac80c4c2a04c473c1657a
Parents: 2454eb5
Author: ivasilinets <iv...@gridgain.com>
Authored: Wed Jun 10 19:32:21 2015 +0300
Committer: ivasilinets <iv...@gridgain.com>
Committed: Wed Jun 10 19:32:21 2015 +0300

----------------------------------------------------------------------
 .../src/main/java/org/apache/ignite/internal/IgniteKernal.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1c0fa5e3/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java b/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
index 4f5e365..db238c8 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
@@ -686,7 +686,7 @@ public class IgniteKernal implements IgniteEx, IgniteMXBean, Externalizable {
                 try {
                     verChecker = new GridUpdateNotifier(gridName, VER_STR, gw, ctx.plugins().allProviders(), false);
 
-                    updateNtfTimer = new Timer("ignite-update-notifier-timer");
+                    updateNtfTimer = new Timer("ignite-update-notifier-timer", true);
 
                     // Setup periodic version check.
                     updateNtfTimer.scheduleAtFixedRate(new GridTimerTask() {