This is an automated email from the ASF dual-hosted git repository.
jchen21 pushed a commit to branch feature/GEODE-7681
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/feature/GEODE-7681 by this
push:
new f1b053f spotlessApply
f1b053f is described below
commit f1b053f0bf1cec8711e17ae13776e0eb599a0b99
Author: Jianxia Chen <[email protected]>
AuthorDate: Thu Mar 5 17:02:47 2020 -0800
spotlessApply
Authored-by: Jianxia Chen <[email protected]>
---
.../internal/cache/PartitionedRegionClearPerformanceDUnitTest.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git
a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
index 5e33a38..72718a7 100644
---
a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
+++
b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
@@ -51,12 +51,14 @@ public class PartitionedRegionClearPerformanceDUnitTest
implements Serializable
server3 = clusterStartupRule.startServerVM(3, locator.getPort());
}
- private void createRegionOnServer(MemberVM server, RegionShortcut type, int
numBuckets, int redundancy) {
+ private void createRegionOnServer(MemberVM server, RegionShortcut type, int
numBuckets,
+ int redundancy) {
server.invoke(() -> {
Cache cache = ClusterStartupRule.getCache();
cache.createRegionFactory(type)
.setPartitionAttributes(
- new
PartitionAttributesFactory().setTotalNumBuckets(numBuckets).setRedundantCopies(redundancy).create())
+ new PartitionAttributesFactory().setTotalNumBuckets(numBuckets)
+ .setRedundantCopies(redundancy).create())
.create(regionName);
});
}