Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix content type so OCM verification works #3313

Merged
merged 3 commits into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelog/unreleased/ocm-content-type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Enhancement: fix content-type for OCM sharing

This fix change the content type to just
"application/json"

https://github.com/cs3org/reva/pull/3313
2 changes: 1 addition & 1 deletion pkg/ocm/share/sender/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func Send(requestBodyMap map[string]interface{}, pi *ocmprovider.ProviderInfo) e
if err != nil {
return errors.Wrap(err, "sender: error framing post request")
}
req.Header.Set("Content-Type", "application/json; param=value")
req.Header.Set("Content-Type", "application/json")
client := rhttp.GetHTTPClient(
rhttp.Timeout(5 * time.Second),
)
Expand Down