summaryrefslogtreecommitdiffstats
path: root/vespaclient-java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-08-11 13:03:51 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2017-08-11 13:03:51 +0200
commit687aa969b032c09c5b02fc7a74dd1f3fb95df135 (patch)
tree178b4ba55d6d7886f7afb69ba82eb10f01b19ec1 /vespaclient-java
parente040af07646d4dd4312ef6307ffbabfdbd0511ca (diff)
https does not work with custom domains
Diffstat (limited to 'vespaclient-java')
-rw-r--r--vespaclient-java/src/main/java/com/yahoo/vespaget/CommandLineOptions.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespaclient-java/src/main/java/com/yahoo/vespaget/CommandLineOptions.java b/vespaclient-java/src/main/java/com/yahoo/vespaget/CommandLineOptions.java
index 5c264925253..51138db8d00 100644
--- a/vespaclient-java/src/main/java/com/yahoo/vespaget/CommandLineOptions.java
+++ b/vespaclient-java/src/main/java/com/yahoo/vespaget/CommandLineOptions.java
@@ -72,7 +72,7 @@ public class CommandLineOptions {
options.addOption(Option.builder("f")
.hasArg(true)
- .desc("Retrieve the specified fields only (see https://docs.vespa.ai/documentation/reference/fieldsets.html) (default '[all]')")
+ .desc("Retrieve the specified fields only (see http://docs.vespa.ai/documentation/reference/fieldsets.html) (default '[all]')")
.longOpt(FIELDSET_OPTION)
.argName("fieldset").build());