DonalEvans commented on a change in pull request #6504:
URL: https://github.com/apache/geode/pull/6504#discussion_r637428747



##########
File path: 
geode-core/src/main/java/org/apache/geode/internal/cache/LocalRegion.java
##########
@@ -7191,6 +7191,7 @@ void updateStatsForGet(final RegionEntry regionEntry, 
final boolean hit) {
 
     final long now = cacheTimeMillis();
     if (regionEntry != null) {
+      logger.info("DEBUG: updateStatsForGet now=" + now);

Review comment:
       This logging should probably be removed.

##########
File path: 
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PREntryIdleExpirationDistributedTest.java
##########
@@ -118,19 +131,22 @@ public void readsInOtherMemberShouldPreventExpiration() 
throws Exception {
 
       ExpiryTask.permitExpiration();
       Stopwatch stopwatch = Stopwatch.createStarted();
-      while (stopwatch.elapsed(SECONDS) <= 5 && region.containsKey(KEY)) {
+      while (stopwatch.elapsed(SECONDS) <= 3 && region.containsKey(KEY)) {
         Thread.sleep(10);
       }
       assertThat(region.containsKey(KEY)).isTrue();
     });
 
+    LogService.getLogger().info("DEBUG: turning off reads in member3");

Review comment:
       This logging can probably be removed.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to