diff --git a/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm b/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm index 477cded..545e041 100644 --- a/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm +++ b/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm @@ -458,6 +458,11 @@ () my $url = $testCmd->{ $argPrefix . 'url'}; + #allow curl to make insecure ssl connections and transfers + if ($url =~ /^https:/) { + push @curl_cmd, '-k'; + } + my @options = (); if (defined $testCmd->{$argPrefix . 'post_options'}) { @options = @{$testCmd->{$argPrefix . 'post_options'}};