You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by la...@apache.org on 2019/12/06 21:53:32 UTC

[geode] branch feature/vSphereTests created (now d29cf50)

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

ladyvader pushed a change to branch feature/vSphereTests
in repository https://gitbox.apache.org/repos/asf/geode.git.


      at d29cf50  WIP: bring vsphere/vmotion tests back to develop

This branch includes the following new commits:

     new d29cf50  WIP: bring vsphere/vmotion tests back to develop

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[geode] 01/01: WIP: bring vsphere/vmotion tests back to develop

Posted by la...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ladyvader pushed a commit to branch feature/vSphereTests
in repository https://gitbox.apache.org/repos/asf/geode.git

commit d29cf50b7ba99a7dbaa823dc232c11dca131b428
Author: ladyVader <lh...@pivotal.io>
AuthorDate: Fri Dec 6 13:52:36 2019 -0800

    WIP: bring vsphere/vmotion tests back to develop
---
 .../org/apache/geode/cache/query/internal/cq/CqServiceProvider.java   | 2 +-
 .../geode/internal/cache/tier/sockets/command/RegisterInterest61.java | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/geode-core/src/main/java/org/apache/geode/cache/query/internal/cq/CqServiceProvider.java b/geode-core/src/main/java/org/apache/geode/cache/query/internal/cq/CqServiceProvider.java
index 862a984..9abfa9e 100644
--- a/geode-core/src/main/java/org/apache/geode/cache/query/internal/cq/CqServiceProvider.java
+++ b/geode-core/src/main/java/org/apache/geode/cache/query/internal/cq/CqServiceProvider.java
@@ -41,7 +41,7 @@ public class CqServiceProvider {
   /**
    * A debug flag used for testing vMotion during CQ registration
    */
-  public static final boolean VMOTION_DURING_CQ_REGISTRATION_FLAG = false;
+  public static boolean VMOTION_DURING_CQ_REGISTRATION_FLAG = false;
 
   static {
     ServiceLoader<CqServiceFactory> loader = ServiceLoader.load(CqServiceFactory.class);
diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/command/RegisterInterest61.java b/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/command/RegisterInterest61.java
index 2ad455c..338b88f 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/command/RegisterInterest61.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/command/RegisterInterest61.java
@@ -47,12 +47,12 @@ import org.apache.geode.security.ResourcePermission.Resource;
 public class RegisterInterest61 extends BaseCommand {
 
   @Immutable
-  private static final RegisterInterest61 singleton = new RegisterInterest61();
+  private static RegisterInterest61 singleton = new RegisterInterest61();
 
   /**
    * A debug flag used for testing vMotion during CQ registration
    */
-  public static final boolean VMOTION_DURING_REGISTER_INTEREST_FLAG = false;
+  public static boolean VMOTION_DURING_REGISTER_INTEREST_FLAG = false;
 
   public static Command getCommand() {
     return singleton;