Skip to content

Commit

Permalink
Adding ap-southeast-2c
Browse files Browse the repository at this point in the history
This Zone caused our newly created container to crash.
  • Loading branch information
yarons authored Oct 5, 2016
1 parent 760e6b3 commit d708d07
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/java/com/netflix/ice/tag/Zone.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ private Zone (Region region, String name) {

public static final Zone AP_SOUTHEAST_2A = new Zone(Region.AP_SOUTHEAST_2, "ap-southeast-2a");
public static final Zone AP_SOUTHEAST_2B = new Zone(Region.AP_SOUTHEAST_2, "ap-southeast-2b");
public static final Zone AP_SOUTHEAST_2C = new Zone(Region.AP_SOUTHEAST_2, "ap-southeast-2c");


private static ConcurrentMap<String, Zone> zonesByName = Maps.newConcurrentMap();

Expand Down Expand Up @@ -106,6 +108,8 @@ private Zone (Region region, String name) {

zonesByName.put(AP_SOUTHEAST_2A.name, AP_SOUTHEAST_2A);
zonesByName.put(AP_SOUTHEAST_2B.name, AP_SOUTHEAST_2B);
zonesByName.put(AP_SOUTHEAST_2C.name, AP_SOUTHEAST_2C);

}

public static void addZone(Zone zone) {
Expand Down

0 comments on commit d708d07

Please sign in to comment.