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

nizhikov 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 571094b0446 IGNITE-14823 Execute abbrevation (#11114)
571094b0446 is described below

commit 571094b04460e92e3a0985ea8cfb59be41b31985
Author: Nikolay <nizhi...@apache.org>
AuthorDate: Wed Dec 20 11:47:21 2023 +0300

    IGNITE-14823 Execute abbrevation (#11114)
---
 modules/checkstyle/src/main/resources/abbrevations.csv       |  2 +-
 .../cache/persistence/IgniteDataStorageMetricsSelfTest.java  | 12 ++++++------
 .../internal/processors/query/h2/GridIndexRebuildTest.java   |  4 ++--
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/modules/checkstyle/src/main/resources/abbrevations.csv 
b/modules/checkstyle/src/main/resources/abbrevations.csv
index e4c2bf90102..d51d1ded1c8 100644
--- a/modules/checkstyle/src/main/resources/abbrevations.csv
+++ b/modules/checkstyle/src/main/resources/abbrevations.csv
@@ -23,7 +23,7 @@ directory,dir
 event,evt
 events,evts
 exception,e,e2,ex
-#execute,exec
+execute,exec
 #frequency,freq
 #future,fut
 #group,grp
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgniteDataStorageMetricsSelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgniteDataStorageMetricsSelfTest.java
index 88002b9eddb..b0339c0900f 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgniteDataStorageMetricsSelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgniteDataStorageMetricsSelfTest.java
@@ -276,7 +276,7 @@ public class IgniteDataStorageMetricsSelfTest extends 
GridCommonAbstractTest {
 
         AtomicLong expLastCpBeforeLockDuration = new AtomicLong();
         AtomicLong expLastCpLockWaitDuration = new AtomicLong();
-        AtomicLong expLastCpListenersExecuteDuration = new AtomicLong();
+        AtomicLong expLastCpListenersExecDuration = new AtomicLong();
         AtomicLong expLastCpLockHoldDuration = new AtomicLong();
         AtomicLong expLastCpWalRecordFsyncDuration = new AtomicLong();
         AtomicLong expLastCpWriteEntryDuration = new AtomicLong();
@@ -291,7 +291,7 @@ public class IgniteDataStorageMetricsSelfTest extends 
GridCommonAbstractTest {
 
             expLastCpBeforeLockDuration.set(Long.parseLong(matcher.group(1)));
             expLastCpLockWaitDuration.set(Long.parseLong(matcher.group(2)));
-            
expLastCpListenersExecuteDuration.set(Long.parseLong(matcher.group(3)));
+            
expLastCpListenersExecDuration.set(Long.parseLong(matcher.group(3)));
             expLastCpLockHoldDuration.set(Long.parseLong(matcher.group(4)));
             
expLastCpWalRecordFsyncDuration.set(Long.parseLong(matcher.group(5)));
             expLastCpWriteEntryDuration.set(Long.parseLong(matcher.group(6)));
@@ -314,7 +314,7 @@ public class IgniteDataStorageMetricsSelfTest extends 
GridCommonAbstractTest {
 
             AtomicLongMetric lastCpBeforeLockDuration = 
mreg.findMetric("LastCheckpointBeforeLockDuration");
             AtomicLongMetric lastCpLockWaitDuration = 
mreg.findMetric("LastCheckpointLockWaitDuration");
-            AtomicLongMetric lastCpListenersExecuteDuration = 
mreg.findMetric("LastCheckpointListenersExecuteDuration");
+            AtomicLongMetric lastCpListenersExecDuration = 
mreg.findMetric("LastCheckpointListenersExecuteDuration");
             AtomicLongMetric lastCpLockHoldDuration = 
mreg.findMetric("LastCheckpointLockHoldDuration");
             AtomicLongMetric lastCpWalRecordFsyncDuration = 
mreg.findMetric("LastCheckpointWalRecordFsyncDuration");
             AtomicLongMetric lastCpWriteEntryDuration = 
mreg.findMetric("LastCheckpointWriteEntryDuration");
@@ -323,7 +323,7 @@ public class IgniteDataStorageMetricsSelfTest extends 
GridCommonAbstractTest {
 
             HistogramMetric cpBeforeLockHistogram = 
mreg.findMetric("CheckpointBeforeLockHistogram");
             HistogramMetric cpLockWaitHistogram = 
mreg.findMetric("CheckpointLockWaitHistogram");
-            HistogramMetric cpListenersExecuteHistogram = 
mreg.findMetric("CheckpointListenersExecuteHistogram");
+            HistogramMetric cpListenersExecHistogram = 
mreg.findMetric("CheckpointListenersExecuteHistogram");
             HistogramMetric cpMarkHistogram = 
mreg.findMetric("CheckpointMarkHistogram");
             HistogramMetric cpLockHoldHistogram = 
mreg.findMetric("CheckpointLockHoldHistogram");
             HistogramMetric cpPagesWriteHistogram = 
mreg.findMetric("CheckpointPagesWriteHistogram");
@@ -337,7 +337,7 @@ public class IgniteDataStorageMetricsSelfTest extends 
GridCommonAbstractTest {
 
             assertEquals(cpCnt.get(), 
Arrays.stream(cpBeforeLockHistogram.value()).sum());
             assertEquals(cpCnt.get(), 
Arrays.stream(cpLockWaitHistogram.value()).sum());
-            assertEquals(cpCnt.get(), 
Arrays.stream(cpListenersExecuteHistogram.value()).sum());
+            assertEquals(cpCnt.get(), 
Arrays.stream(cpListenersExecHistogram.value()).sum());
             assertEquals(cpCnt.get(), 
Arrays.stream(cpMarkHistogram.value()).sum());
             assertEquals(cpCnt.get(), 
Arrays.stream(cpLockHoldHistogram.value()).sum());
             assertEquals(cpCnt.get(), 
Arrays.stream(cpPagesWriteHistogram.value()).sum());
@@ -348,7 +348,7 @@ public class IgniteDataStorageMetricsSelfTest extends 
GridCommonAbstractTest {
 
             assertEquals(expLastCpBeforeLockDuration.get(), 
lastCpBeforeLockDuration.value());
             assertEquals(expLastCpLockWaitDuration.get(), 
lastCpLockWaitDuration.value());
-            assertEquals(expLastCpListenersExecuteDuration.get(), 
lastCpListenersExecuteDuration.value());
+            assertEquals(expLastCpListenersExecDuration.get(), 
lastCpListenersExecDuration.value());
             assertEquals(expLastCpLockHoldDuration.get(), 
lastCpLockHoldDuration.value());
             assertEquals(expLastCpWalRecordFsyncDuration.get(), 
lastCpWalRecordFsyncDuration.value());
             assertEquals(expLastCpWriteEntryDuration.get(), 
lastCpWriteEntryDuration.value());
diff --git 
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/GridIndexRebuildTest.java
 
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/GridIndexRebuildTest.java
index 92049fe63eb..9ddc91974b1 100644
--- 
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/GridIndexRebuildTest.java
+++ 
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/GridIndexRebuildTest.java
@@ -324,10 +324,10 @@ public class GridIndexRebuildTest extends 
GridCommonAbstractTest {
 
         VisorTaskArgument<CacheValidateIndexesCommandArg> visorTaskArg = new 
VisorTaskArgument<>(nodes, arg, true);
 
-        ComputeTaskInternalFuture<ValidateIndexesTaskResult> execute = 
grid1.context().task().
+        ComputeTaskInternalFuture<ValidateIndexesTaskResult> exec = 
grid1.context().task().
             execute(new ValidateIndexesTask(), visorTaskArg);
 
-        ValidateIndexesTaskResult res = execute.get();
+        ValidateIndexesTaskResult res = exec.get();
 
         Map<?, ValidateIndexesJobResult> results = res.results();
 

Reply via email to