Skip to content

Commit

Permalink
change clusterId in Cmek test
Browse files Browse the repository at this point in the history
Change-Id: Idc8ad885205190374b089349ee94cc627bafd782
  • Loading branch information
ad548 committed Apr 9, 2021
1 parent da919e1 commit 5c7fa53
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -70,6 +70,7 @@ public class BigtableCmekIT {
private static String instanceId;
private static String clusterId1;
private static String clusterId2;
private static String clusterId3;
private static String kmsKeyName;
private static List<String> zones;
private static String otherZone;
Expand All @@ -91,6 +92,7 @@ public static void validatePlatform() throws IOException {
instanceId = AbstractTestEnv.TEST_INSTANCE_PREFIX + Instant.now().getEpochSecond();
clusterId1 = instanceId + "-c1";
clusterId2 = instanceId + "-c2";
clusterId3 = instanceId + "-c3";
zones = testEnvRule.env().getMultipleZonesInSameRegion();
otherZone =
Sets.difference(
Expand Down Expand Up @@ -149,7 +151,7 @@ public void instanceAndClusterTest() {

try {
instanceAdmin.createCluster(
CreateClusterRequest.of(instanceId, clusterId2)
CreateClusterRequest.of(instanceId, clusterId3)
.setZone(otherZone)
.setServeNodes(1)
.setStorageType(StorageType.SSD)
Expand Down

0 comments on commit 5c7fa53

Please sign in to comment.