We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abb9fe6 commit 5b08180Copy full SHA for 5b08180
s3/src/main/java/ch/cyberduck/core/auth/AWSSessionCredentialsRetriever.java
@@ -75,7 +75,7 @@ public Credentials get() throws BackgroundException {
75
final HttpClientBuilder configuration = builder.build(ProxyFactory.get(),
76
new DisabledTranscriptListener(), new DisabledLoginCallback());
77
try (CloseableHttpClient client = configuration.build()) {
78
- final HttpRequestBase resource = new HttpGet(new HostUrlProvider().withUsername(false).withPath(true).get(address));
+ final HttpRequestBase resource = new HttpGet(url);
79
return client.execute(resource, response -> {
80
switch(response.getStatusLine().getStatusCode()) {
81
case HttpStatus.SC_OK:
0 commit comments