Github user galen-pivotal commented on a diff in the pull request:

    https://github.com/apache/geode/pull/313#discussion_r94888520
  
    --- Diff: 
geode-core/src/test/java/org/apache/geode/cache30/ReconnectDUnitTest.java ---
    @@ -534,41 +532,35 @@ public Object call() throws CacheException {
                 Cache cache = getCache();
                 Region myRegion = cache.getRegion("root/myRegion");
                 myRegion.put("MyKey1", "MyValue1");
    -            // myRegion.put("Mykey2", "MyValue2");
                 return savedSystem.getDistributedMember();
               }
             };
         vm1.invoke(create1);
     
    -
         try {
    -
           dm = getDMID(vm0);
           createGfshWaitingThread(vm0);
           forceDisconnect(vm0);
           newdm = waitForReconnect(vm0);
           assertGfshWaitingThreadAlive(vm0);
     
    -      vm0.invoke(new SerializableRunnable("check for running locator") {
    -        public void run() {
    -          WaitCriterion wc = new WaitCriterion() {
    -            public boolean done() {
    -              return Locator.getLocator() != null;
    -            }
    -
    -            public String description() {
    -              return "waiting for locator to restart";
    -            }
    -          };
    -          Wait.waitForCriterion(wc, 30000, 1000, false);
    +      boolean running = (Boolean) vm0.invoke(new 
SerializableCallable("check for running locator") {
    --- End diff --
    
    Done, and I changed the rest of the method to be consistent.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to