[Webkit-unassigned] [Bug 93214] [EFL][DRT] http/tests/loading/307-after-303-after-post.html times out

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 12 07:27:12 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=93214





--- Comment #15 from Sergio Villar Senin <svillar at igalia.com>  2013-02-12 07:29:25 PST ---
I worked on this same issue in bug 109576. I replaced the implementation of shouldRedirecAsGET() by a more simpler version, basically

+    if (((message->status_code == SOUP_STATUS_MOVED_PERMANENTLY)
+        || (message->status_code == SOUP_STATUS_FOUND)
+        || (message->status_code == SOUP_STATUS_SEE_OTHER))
+        && (request.httpMethod() == "POST"))
         return true;

Do we really need all the checks we have right now?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list