fixed location for openhosting to FL, not VA

This commit is contained in:
Adrian Cole 2011-09-29 10:10:30 -07:00 committed by Jason King
parent dd189cf6f0
commit 1eaddcde78
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ public class OpenHostingEast1PropertiesBuilder extends ElasticStackPropertiesBui
@Override @Override
protected Properties defaultProperties() { protected Properties defaultProperties() {
Properties properties = super.defaultProperties(); Properties properties = super.defaultProperties();
properties.setProperty(PROPERTY_ISO3166_CODES, "US-VA"); properties.setProperty(PROPERTY_ISO3166_CODES, "US-FL");
properties.setProperty(PROPERTY_ENDPOINT, "https://api.east1.openhosting.com"); properties.setProperty(PROPERTY_ENDPOINT, "https://api.east1.openhosting.com");
properties.setProperty(PROPERTY_API_VERSION, "2.0"); properties.setProperty(PROPERTY_API_VERSION, "2.0");
return properties; return properties;

View File

@ -102,7 +102,7 @@ public class OpenHostingEast1ProviderMetadata extends BaseProviderMetadata {
*/ */
@Override @Override
public Set<String> getIso3166Codes() { public Set<String> getIso3166Codes() {
return ImmutableSet.of("US-VA"); return ImmutableSet.of("US-FL");
} }
} }

View File

@ -78,6 +78,6 @@ public class OpenHostingEast1TemplateBuilderLiveTest extends BaseTemplateBuilder
@Override @Override
protected Set<String> getIso3166Codes() { protected Set<String> getIso3166Codes() {
return ImmutableSet.<String> of("US-VA"); return ImmutableSet.<String> of("US-FL");
} }
} }