kopia lustrzana https://github.com/gaul/s3proxy
Do not set endpoint if it is an empty string
Also do not pass along endpoint as an override if we set it via the builder. Fixes #229.pull/239/head
rodzic
23705a879b
commit
17294be152
|
|
@ -272,6 +272,7 @@ public final class Main {
|
||||||
String credential = properties.getProperty(
|
String credential = properties.getProperty(
|
||||||
Constants.PROPERTY_CREDENTIAL);
|
Constants.PROPERTY_CREDENTIAL);
|
||||||
String endpoint = properties.getProperty(Constants.PROPERTY_ENDPOINT);
|
String endpoint = properties.getProperty(Constants.PROPERTY_ENDPOINT);
|
||||||
|
properties.remove(Constants.PROPERTY_ENDPOINT);
|
||||||
String region = properties.getProperty(
|
String region = properties.getProperty(
|
||||||
LocationConstants.PROPERTY_REGION);
|
LocationConstants.PROPERTY_REGION);
|
||||||
|
|
||||||
|
|
@ -306,7 +307,7 @@ public final class Main {
|
||||||
.credentials(identity, credential)
|
.credentials(identity, credential)
|
||||||
.modules(ImmutableList.<Module>of(new SLF4JLoggingModule()))
|
.modules(ImmutableList.<Module>of(new SLF4JLoggingModule()))
|
||||||
.overrides(properties);
|
.overrides(properties);
|
||||||
if (endpoint != null) {
|
if (!Strings.isNullOrEmpty(endpoint)) {
|
||||||
builder = builder.endpoint(endpoint);
|
builder = builder.endpoint(endpoint);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue