summaryrefslogtreecommitdiffstats
path: root/vespaclient
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2017-08-17 09:05:35 +0200
committerHarald Musum <musum@oath.com>2017-08-17 09:05:35 +0200
commit86d502d089d747fb7758d0c078b21c8039d12394 (patch)
treea0adea4775c3d30baa45e3e0b2f4269302d26cac /vespaclient
parentacd1b850cd206474cef8de6231de6782f6e02120 (diff)
Use vespa-get-config instead of getvespaconfig
Diffstat (limited to 'vespaclient')
-rw-r--r--vespaclient/src/perl/lib/Yahoo/Vespa/VespaModel.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/vespaclient/src/perl/lib/Yahoo/Vespa/VespaModel.pm b/vespaclient/src/perl/lib/Yahoo/Vespa/VespaModel.pm
index e82c35760d4..b1675130ec4 100644
--- a/vespaclient/src/perl/lib/Yahoo/Vespa/VespaModel.pm
+++ b/vespaclient/src/perl/lib/Yahoo/Vespa/VespaModel.pm
@@ -8,9 +8,9 @@
# Possible improvements:
#
# - Depending on config Rest API and config server might be better than
-# depending on getvespaconfig tool and config format.
+# depending on vespa-get-config tool and config format.
# - Support direct communication with config server if config proxy is not
-# running (unless getvespaconfig does that for us)
+# running (unless vespa-get-config does that for us)
# - Support specifying config server, to be able to run tool external from the
# vespa system to talk to.
# - Return a list of all matching sockets instead of first found.
@@ -162,7 +162,7 @@ sub setModelRetrievalFunction { # (Function)
}
sub retrieveModelConfigDefault { # ()
my $VESPA_HOME= $ENV{'VESPA_HOME'};
- my $cmd = ${VESPA_HOME} . '/bin/getvespaconfig -n cloud.config.model -i admin/model';
+ my $cmd = ${VESPA_HOME} . '/bin/vespa-get-config -n cloud.config.model -i admin/model';
if (defined $CONFIG_REQUEST_TIMEOUT) {
$cmd .= " -w $CONFIG_REQUEST_TIMEOUT";