Replies: 2 comments 1 reply
-
I think 303 is fine for GET requests:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah ok. That wikipedia article is incorrect then. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We generally do an HTTP 302 redirect to forward users to s3... however I just noticed rocket is doing a HTTP 303 on a GET. This seems... incorrect? HTTP 303 is only supposed to occur on a post.
I'm looking into this because we're requesting partials which is seemingly not making it "through" the http 303.
Code: https://github.com/haiku/hpkgbouncer/blob/master/src/main.rs#L105
On get, do a Redirect. Gets a 303
Beta Was this translation helpful? Give feedback.
All reactions