aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-maven-plugin
diff options
context:
space:
mode:
authorØyvind Grønnesby <oyving@verizonmedia.com>2019-11-18 13:55:25 +0100
committerØyvind Grønnesby <oyving@verizonmedia.com>2019-11-18 13:55:25 +0100
commit14010812131a6543af2d07fb5a0ab69a829370a6 (patch)
treecc52f8372b763c1125f3713922f9c58bbea50747 /vespa-maven-plugin
parent8b14ecc28a68aeda41d1f76141c50e94419defab (diff)
They are two different properties
Doing this once more with feeling
Diffstat (limited to 'vespa-maven-plugin')
-rw-r--r--vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/AbstractVespaMojo.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/AbstractVespaMojo.java b/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/AbstractVespaMojo.java
index 96ee5b88edc..dabbaa351f9 100644
--- a/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/AbstractVespaMojo.java
+++ b/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/AbstractVespaMojo.java
@@ -80,7 +80,7 @@ public abstract class AbstractVespaMojo extends AbstractMojo {
? ControllerHttpClient.withSignatureKey(URI.create(endpoint), Paths.get(apiKeyFile), id)
: ControllerHttpClient.withKeyAndCertificate(URI.create(endpoint), Paths.get(apiKeyFile), Paths.get(apiCertificateFile));
} else {
- throw new IllegalArgumentException("One of the properties 'apiKeyFile' or 'apiKeyFile' is required.");
+ throw new IllegalArgumentException("One of the properties 'apiKey' or 'apiKeyFile' is required.");
}
}