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

ascherbakov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 481ecc76b4 IGNITE-23032 Fix compilation issue.
481ecc76b4 is described below

commit 481ecc76b4000a700620acc7412d9e286224376d
Author: Alexey Scherbakov <[email protected]>
AuthorDate: Tue Aug 20 11:53:55 2024 +0300

    IGNITE-23032 Fix compilation issue.
---
 .../java/org/apache/ignite/internal/benchmark/UpsertKvBenchmark.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/benchmark/UpsertKvBenchmark.java
 
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/benchmark/UpsertKvBenchmark.java
index c5d2d18fc6..8c7a5efb38 100644
--- 
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/benchmark/UpsertKvBenchmark.java
+++ 
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/benchmark/UpsertKvBenchmark.java
@@ -67,7 +67,7 @@ public class UpsertKvBenchmark extends 
AbstractMultiNodeBenchmark {
      */
     @Setup
     public void setUp() {
-        kvView = clusterNode.tables().table(TABLE_NAME).keyValueView();
+        kvView = publicIgnite.tables().table(TABLE_NAME).keyValueView();
         for (int i = 1; i < 11; i++) {
             tuple.set("field" + i, FIELD_VAL);
         }

Reply via email to