Skip to content

Commit e1b0bc9

Browse files
committed
Merge pull request #309 from hrchu/patch-1
Get rid of 100-continue overhead
2 parents 3bd55cf + dcbfa8a commit e1b0bc9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dev/cosbench-s3/src/com/intel/cosbench/api/S3Stor/S3Storage.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public void init(Config config, Logger logger) {
5454
ClientConfiguration clientConf = new ClientConfiguration();
5555
clientConf.setConnectionTimeout(timeout);
5656
clientConf.setSocketTimeout(timeout);
57+
clientConf.withUseExpectContinue(false);
5758
// clientConf.setProtocol(Protocol.HTTP);
5859
if((!proxyHost.equals(""))&&(!proxyPort.equals(""))){
5960
clientConf.setProxyHost(proxyHost);

0 commit comments

Comments
 (0)