summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-02-20 09:50:17 +0100
committerGitHub <noreply@github.com>2020-02-20 09:50:17 +0100
commit6a39f2c585e08d64122f58e1a5546b6cd999dcb7 (patch)
tree9cbc3392599f5974d3746290ff3f63ffa94b825f /config-model
parenta387fc96d20fde6a6c3a15690f9e604ead2460c2 (diff)
parent0a352bc6ab22515a3ac576f75e98d911d82f08d5 (diff)
Merge pull request #12231 from vespa-engine/bjorncs/vespa-security-env-hostname-validation
Bjorncs/vespa security env hostname validation
Diffstat (limited to 'config-model')
-rwxr-xr-xconfig-model/src/main/perl/vespa-deploy2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/perl/vespa-deploy b/config-model/src/main/perl/vespa-deploy
index 59a84f5b0c0..a128e4a8d4c 100755
--- a/config-model/src/main/perl/vespa-deploy
+++ b/config-model/src/main/perl/vespa-deploy
@@ -154,7 +154,7 @@ my $command = shift;
$command ||= "help";
# The '--insecure' parameter is sadly required as it is not possible to disable or alter hostname verification with curl
-my $curl_command = $VESPA_HOME . '/libexec/vespa/vespa-curl-wrapper --insecure -A vespa-deploy --silent --show-error --connect-timeout 30 --max-time 1200';
+my $curl_command = $VESPA_HOME . '/libexec/vespa/vespa-curl-wrapper -A vespa-deploy --silent --show-error --connect-timeout 30 --max-time 1200';
my $CURL_PUT = $curl_command . ' --write-out \%{http_code} --request PUT';
my $CURL_GET = $curl_command . ' --request GET';