Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit 8d48e70

Browse files
committed
Minor fixes
1 parent ff5a0db commit 8d48e70

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
XXXX.XX.XX Version X.X.X
2+
* Added a workaround to a JDK bug that would ignore connection timeouts on retries, causing hangs in some scenarios. This requires defaulting setting https keep-alive on all sockets. It can be disabled via BlobRequestOptions.
3+
14
2019.12.06 Version 8.6.0
25
* Added the skipDecode flag to the generate sas method on CloudBlob. This flag allows the customer to skip the url decode that happens by default on the string to sign right before signing. This resolves some problems with custom values for some of the query parameters when used with third party clients.
36

microsoft-azure-storage/src/com/microsoft/azure/storage/RequestOptions.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ protected static void applyBaseDefaultsInternal(final RequestOptions modifiedOpt
106106
if (modifiedOptions.requireEncryption() == null) {
107107
modifiedOptions.setRequireEncryption(false);
108108
}
109+
110+
if (modifiedOptions.disableHttpsSocketKeepAlive() == null) {
111+
modifiedOptions.setDisableHttpsSocketKeepAlive(false);
112+
}
109113
}
110114

111115
/**

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111
<groupId>com.microsoft.azure</groupId>
1212
<artifactId>azure-storage</artifactId>
13-
<version>8.6.0-keepAlive</version>
13+
<version>8.6.0</version>
1414
<packaging>jar</packaging>
1515

1616
<name>Microsoft Azure Storage Client SDK</name>

0 commit comments

Comments
 (0)