summaryrefslogtreecommitdiffstats
path: root/filedistribution
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-02-07 15:36:21 +0100
committerGitHub <noreply@github.com>2018-02-07 15:36:21 +0100
commit5b8171d9b7003323ec4a5afcaa92e8128b4dc1e3 (patch)
treecf26af0a8c566410f1f1530e3380d9af4014a731 /filedistribution
parenta8d27af94aa5abf3e20deda9b7f04f5199d56774 (diff)
parent0dc09c742006336cfb453733f35928e436c8a527 (diff)
Merge pull request #4957 from vespa-engine/revert-4953-revert-4946-hmusum/use-same-fs-for-tmp-as-for-filereferences
Revert "Revert "Use same path (and therefore, same file system) for tmp files""
Diffstat (limited to 'filedistribution')
-rw-r--r--filedistribution/src/main/java/com/yahoo/vespa/filedistribution/FileDownloader.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/filedistribution/src/main/java/com/yahoo/vespa/filedistribution/FileDownloader.java b/filedistribution/src/main/java/com/yahoo/vespa/filedistribution/FileDownloader.java
index c6b2dd32be7..5655d69593c 100644
--- a/filedistribution/src/main/java/com/yahoo/vespa/filedistribution/FileDownloader.java
+++ b/filedistribution/src/main/java/com/yahoo/vespa/filedistribution/FileDownloader.java
@@ -36,7 +36,7 @@ public class FileDownloader {
public FileDownloader(ConnectionPool connectionPool) {
this(connectionPool,
new File(Defaults.getDefaults().underVespaHome("var/db/vespa/filedistribution")),
- new File(Defaults.getDefaults().underVespaHome("tmp")),
+ new File(Defaults.getDefaults().underVespaHome("var/db/vespa/filedistribution")),
Duration.ofMinutes(15));
}