Juan Hernandez has posted comments on this change.

Change subject: restapi: Remove "expect" header from requests (#849442)
......................................................................


Patch Set 3: Verified

Used the following JSP to verify that the web server actually removes the 
"expect" header:

  <%@page contentType="text/plain" %>
  <%@page import="java.util.Enumeration" %>
  <%
    Enumeration<String> names = request.getHeaderNames();
    while (names.hasMoreElements()) {
      String name = names.nextElement();
      String value = request.getHeader(name);
      out.println(name + ": " + value);
    }
    out.println(request);
  %>

--
To view, visit http://gerrit.ovirt.org/7399
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I9f3585fce0673e5da118d9abd3fd96dd11008d4e
Gerrit-PatchSet: 3
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Juan Hernandez <[email protected]>
Gerrit-Reviewer: Juan Hernandez <[email protected]>
Gerrit-Reviewer: Michael Pasternak <[email protected]>
Gerrit-Reviewer: Yair Zaslavsky <[email protected]>
Gerrit-Reviewer: oVirt Jenkins CI Server
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to