Commit dca71ddf by Mukund Thakur Committed by Ashutosh Mestry

ATLAS-3506 Add Expect 100 Continue header to Atlas Client.

parent f6e252f8
......@@ -372,7 +372,8 @@ public abstract class AtlasBaseClient {
// Set content headers
requestBuilder
.accept(api.getProduces())
.type(api.getConsumes());
.type(api.getConsumes())
.header("Expect", "100-continue");
// Set cookie if present
if (cookie != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment