You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bb...@apache.org on 2021/05/06 17:34:52 UTC

[geode-native] branch develop updated: GEODE-9236: Fix testThinClientFailover2 and reenable (#802)

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

bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 36c84e2  GEODE-9236: Fix testThinClientFailover2 and reenable (#802)
36c84e2 is described below

commit 36c84e2ce8b9f72b5c520e233bd991f1ac8d8894
Author: Michael Martell <mm...@pivotal.io>
AuthorDate: Thu May 6 10:34:42 2021 -0700

    GEODE-9236: Fix testThinClientFailover2 and reenable (#802)
    
    * Remove commented out line in CMakeLists.txt
---
 cppcache/integration-test/CMakeLists.txt          | 1 -
 cppcache/integration-test/ThinClientFailover2.hpp | 3 +--
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/cppcache/integration-test/CMakeLists.txt b/cppcache/integration-test/CMakeLists.txt
index d987045..04e896f 100644
--- a/cppcache/integration-test/CMakeLists.txt
+++ b/cppcache/integration-test/CMakeLists.txt
@@ -186,7 +186,6 @@ set_tests_properties(
     testThinClientDurableDisconnectNormal
     testThinClientDurableDisconnectTimeout
     testThinClientDurableReconnect
-    testThinClientFailover2
     testThinClientHAFailover
     testThinClientHAMixedRedundancy
     testThinClientHAQueryFailover
diff --git a/cppcache/integration-test/ThinClientFailover2.hpp b/cppcache/integration-test/ThinClientFailover2.hpp
index ca2ebc3..69fbacf 100644
--- a/cppcache/integration-test/ThinClientFailover2.hpp
+++ b/cppcache/integration-test/ThinClientFailover2.hpp
@@ -440,8 +440,7 @@ DUNIT_TASK_DEFINITION(CLIENT2, StepSix)
     // This step get the value from region, if key is inavalidate in region,
     // value
     // will get from server.
-    // doNetsearch( regionNames[0], keys[4], vals[4] );
-    verifyEntry(regionName, keys[0], nvals[0]);
+    doNetsearch( regionName, keys[0], nvals[0] );
     updateEntry(regionName, keys[1], nvals[1]);
     LOG("StepSix complete.");
   }