You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ti...@apache.org on 2022/12/14 12:38:45 UTC

[ignite] branch master updated: Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)" (#10442)

This is an automated email from the ASF dual-hosted git repository.

timoninmaxim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new f16ce98bace Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)" (#10442)
f16ce98bace is described below

commit f16ce98bace0afa445e0eb2eeb62aee7e35a9079
Author: Maksim Timonin <ti...@apache.org>
AuthorDate: Wed Dec 14 15:38:39 2022 +0300

    Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)" (#10442)
---
 .../src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java b/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java
index 8c1dd047258..1d5ce72a50d 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java
@@ -127,8 +127,7 @@ public class LongJVMPauseDetector {
                         final long pause = now - PRECISION - lastWakeUpTime;
 
                         if (pause >= THRESHOLD) {
-                            log.warning("Possible too long JVM pause: " + pause + " milliseconds. Possible reasons:" +
-                                " GC pause, hardware temporary freeze, bulk loading, other JVM pauses.");
+                            log.warning("Possible too long JVM pause: " + pause + " milliseconds.");
 
                             synchronized (LongJVMPauseDetector.this) {
                                 final int next = (int)(longPausesCnt % EVT_CNT);