You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[aws-api] Fix DELETE calls not working with v4 signer (#1037)
OkHttp3 sets the body of a DELETE call to a byte array of length 0. The
v4 signer interceptor only checks if the body is null and if its not it sets the
content type to application/json. This causes an invalid REST request to
be created. Fixed by expanding the check to also make sure the body has a
content length greater than 0.
Github Issue: #1028
Co-authored-by: Patrick Hoette <[email protected]>
0 commit comments