This is an automated email from the ASF dual-hosted git repository.
eshu11 pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 3a2a539 GEODE-4655: Use smaller eviction limit to avoid async
scanning. (#1446)
3a2a539 is described below
commit 3a2a539df95451ecf8fac1f6587a8b1d32f7e4fc
Author: pivotal-eshu <[email protected]>
AuthorDate: Wed Feb 14 09:21:17 2018 -0800
GEODE-4655: Use smaller eviction limit to avoid async scanning. (#1446)
---
.../test/java/org/apache/geode/internal/cache/DiskRegionJUnitTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/geode-core/src/test/java/org/apache/geode/internal/cache/DiskRegionJUnitTest.java
b/geode-core/src/test/java/org/apache/geode/internal/cache/DiskRegionJUnitTest.java
index fa3824d..26dc0ac 100755
---
a/geode-core/src/test/java/org/apache/geode/internal/cache/DiskRegionJUnitTest.java
+++
b/geode-core/src/test/java/org/apache/geode/internal/cache/DiskRegionJUnitTest.java
@@ -173,9 +173,10 @@ public class DiskRegionJUnitTest extends
DiskRegionTestingBase {
*/
@Test
public void testDiskRegionOverflow() throws Exception {
+ int evictionOverflowCapacity = 5;
DiskRegionProperties props = new DiskRegionProperties();
props.setOverflow(true);
- props.setOverFlowCapacity(100);
+ props.setOverFlowCapacity(evictionOverflowCapacity);
props.setDiskDirs(dirs);
Region region = DiskRegionHelperFactory.getAsyncOverFlowOnlyRegion(cache,
props);
--
To stop receiving notification emails like this one, please contact
[email protected].