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:37:35 UTC

[ignite] 01/01: Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)"

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

timoninmaxim pushed a commit to branch revert-10434-IGNITE-17945
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit b557e2bfdabacb2b49342d6703dc2b5bae93d4c5
Author: Maksim Timonin <ti...@apache.org>
AuthorDate: Wed Dec 14 15:37:24 2022 +0300

    Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)"
    
    This reverts commit 86dc48ea4f93df44d0c11730766cb7002e1e5d84.
---
 .../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);