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/trunk@15586 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2013-03-19 16:01:22 +00:00
parent 4c6b234e13
commit 67787dad86

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;
}