summaryrefslogtreecommitdiffstats
path: root/defaults
diff options
context:
space:
mode:
authorValerij Fredriksen <freva@users.noreply.github.com>2019-07-12 13:10:09 +0200
committerGitHub <noreply@github.com>2019-07-12 13:10:09 +0200
commitfed2b8e0842a3d508bca457e3aed661c3300ff4d (patch)
treeb8bf30f049a41e6be29e15aee025c17e78ec6cae /defaults
parenta9d382927b90ff9550558aef2ac9ff34696b88c2 (diff)
Document path persistence
Diffstat (limited to 'defaults')
-rw-r--r--defaults/src/main/java/com/yahoo/vespa/defaults/Defaults.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/defaults/src/main/java/com/yahoo/vespa/defaults/Defaults.java b/defaults/src/main/java/com/yahoo/vespa/defaults/Defaults.java
index f1b7e38986f..6fb6e4f0860 100644
--- a/defaults/src/main/java/com/yahoo/vespa/defaults/Defaults.java
+++ b/defaults/src/main/java/com/yahoo/vespa/defaults/Defaults.java
@@ -114,11 +114,11 @@ public class Defaults {
public String vespaHostname() { return vespaHost; }
/**
- * Returns the path where a Vespa application can store arbitrary files. This should only be used for temporary
- * files as there are no availability guarantees for files stored here. The application must be able to recreate
+ * Returns the path where a Vespa application can store arbitrary files on the node. This path
+ * is persistent during the lifetime of this node. The application must be able to recreate
* required files on its own (e.g. by downloading them from a remote source) if missing.
*
- * @return the temporary storage path
+ * @return the local application storage path
*/
public String temporaryApplicationStorage() { return temporaryApplicationStorage; }