Remove 304 response code and add 307 and 308. (#225)

* Remove 304 response code and add 307 and 308.

Signed-off-by: Constance Caramanolis <ccaramanolis@lyft.com>
pull/226/head
ccaraman 8 years ago committed by GitHub
parent 4d18e6d236
commit 971fb1b70f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      api/rds.proto

@ -297,8 +297,10 @@ message RedirectAction {
FOUND = 1;
// See Other HTTP Status Code - 303.
SEE_OTHER = 2;
// Not Modified HTTP Status Code - 304.
NOT_MODIFIED = 3;
// Temporary Redirect HTTP Status Code - 307.
TEMPORARY_REDIRECT = 3;
// Permanent Redirect HTTP Status Code - 308.
PERMANENT_REDIRECT = 4;
}
// The HTTP status code to use in the redirect response. The default response
// code is MOVED_PERMANENTLY (301).

Loading…
Cancel
Save