Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit 0df9514

Browse files
committed
fix(gce): log all zones when configure zones explicit
1 parent 425f22d commit 0df9514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clouddriver-google/src/main/java/com/netflix/spinnaker/clouddriver/google/deploy/handlers/BasicGoogleDeployHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ protected void setDistributionPolicyToInstanceGroup(
966966
log.info(
967967
String.format(
968968
"Configuring explicit zones selected for regional server group: %s",
969-
description.getDistributionPolicy().getZones().get(0)));
969+
String.join(", ", description.getDistributionPolicy().getZones())));
970970
List<DistributionPolicyZoneConfiguration> selectedZones =
971971
description.getDistributionPolicy().getZones().stream()
972972
.map(

0 commit comments

Comments
 (0)