Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
GEODE-6354: Add missing server group assertion (apache#3157)
Browse files Browse the repository at this point in the history
Authored-by: Jianxia Chen <[email protected]>
  • Loading branch information
jchen21 authored Feb 6, 2019
1 parent 6d5aca5 commit f31bfce
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,8 @@ public void createMappingReplicatedUpdatesServiceAndClusterConfigForMultiServerG
locator.invoke(() -> {
RegionMapping regionMapping = getRegionMappingFromClusterConfig(regionName, TEST_GROUP1);
assertValidMappingOnLocator(regionMapping, regionName, TEST_GROUP1, false, false);
regionMapping = getRegionMappingFromClusterConfig(regionName, TEST_GROUP2);
assertValidMappingOnLocator(regionMapping, regionName, TEST_GROUP2, false, false);
});
}

Expand Down Expand Up @@ -382,6 +384,8 @@ public void createMappingPartitionedUpdatesServiceAndClusterConfigForMultiServer
locator.invoke(() -> {
RegionMapping regionMapping = getRegionMappingFromClusterConfig(regionName, TEST_GROUP1);
assertValidMappingOnLocator(regionMapping, regionName, TEST_GROUP1, false, true);
regionMapping = getRegionMappingFromClusterConfig(regionName, TEST_GROUP2);
assertValidMappingOnLocator(regionMapping, regionName, TEST_GROUP2, false, true);
});
}

Expand Down

0 comments on commit f31bfce

Please sign in to comment.