From 971fb1b70f419348a1ac2273508237b7ebd08cf5 Mon Sep 17 00:00:00 2001 From: ccaraman Date: Mon, 6 Nov 2017 14:28:40 -0800 Subject: [PATCH] Remove 304 response code and add 307 and 308. (#225) * Remove 304 response code and add 307 and 308. Signed-off-by: Constance Caramanolis --- api/rds.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/rds.proto b/api/rds.proto index fab5e2d4..9218a617 100644 --- a/api/rds.proto +++ b/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).