aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-api
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2019-10-25 12:52:24 +0200
committerJon Marius Venstad <venstad@gmail.com>2019-10-25 12:52:24 +0200
commit052987bb1acf8c78426a7f33e618560bb0269f50 (patch)
treeb70b5ee6a2def3d8ebdc5921a7c010dfcc6e3df6 /hosted-api
parent91f027082d74a11016375782a9e4c2effd02f8a5 (diff)
Propagate more properties and rename some auth properties
Diffstat (limited to 'hosted-api')
-rw-r--r--hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java b/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java
index 68656f06d7d..c0fe2074809 100644
--- a/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java
+++ b/hosted-api/src/main/java/ai/vespa/hosted/api/Properties.java
@@ -61,8 +61,8 @@ public class Properties {
return getNonBlankProperty("dataPlaneCertificateFile").map(Paths::get);
}
- /** Returns the path of the data plane private key file, if this is set with the 'dataPlanePrivateKeyFile' property. */
- public static Optional<Path> dataPlanePrivateKeyFile() {
+ /** Returns the path of the data plane private key file, if this is set with the 'dataPlaneKeyFile' property. */
+ public static Optional<Path> dataPlaneKeyFile() {
return getNonBlankProperty("dataPlaneKeyFile").map(Paths::get);
}