HTTP/1.1 seems to be required for RHEV-M to respond right

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@15585 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2013-03-19 15:47:36 +00:00
parent 03a445a74a
commit c911961b09

View File

@ -651,6 +651,7 @@ sub genreq {
my $url = "https://".$rhevm->{name}.":8443".$api;
my $request = HTTP::Request->new($method, $url, $header, $content);
$request->protocol('HTTP/1.1');
return $request;
}