-
Notifications
You must be signed in to change notification settings - Fork 165
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
Remove 308 redirect support from App/AppUser #7942
Comments
➤ PM Bot commented: Jira ticket: RCORE-2222 |
➤ michael-wb commented: The CPP SDK should probably add redirect support before releasing this set of changes. They are using the http client from Realm Core networking, so it could potentially be added to the callback handler that receives the http response. |
➤ michael-wb commented: The redirect support will be removed and the following items will be retained:
|
This was referenced Aug 23, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have a bunch of code that tries to handle 308 HTTP redirects received from BAAS, but it turns out that all-but-one of the implementations of the GenericNetworkTransport follow 308-redirects transparently and the server doesn't actually send any 308 redirects, so our handling of 308 redirects is actually dead code in production. We should remove all the redirect handling code and any associated tests to simplify the codebase.
The text was updated successfully, but these errors were encountered: