summaryrefslogtreecommitdiffstats
path: root/node-maintainer
diff options
context:
space:
mode:
authorSindre Grøstad <30319420+sgrostad@users.noreply.github.com>2017-08-18 16:43:56 +0200
committerGitHub <noreply@github.com>2017-08-18 16:43:56 +0200
commit515acff80f82a4e615a872ed3686243506feae75 (patch)
treee2f8920db41cd931ce34eb14306287eced40a33c /node-maintainer
parent93d6a109c835f4e04ccad48d9ec1f6865e5854d9 (diff)
Changed write location for diskbenchmark (#3159)
Diffstat (limited to 'node-maintainer')
-rw-r--r--node-maintainer/src/main/java/com/yahoo/vespa/hosted/node/verification/hardware/benchmarks/DiskBenchmark.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/node-maintainer/src/main/java/com/yahoo/vespa/hosted/node/verification/hardware/benchmarks/DiskBenchmark.java b/node-maintainer/src/main/java/com/yahoo/vespa/hosted/node/verification/hardware/benchmarks/DiskBenchmark.java
index 2a4c8d9b694..39a6f66460b 100644
--- a/node-maintainer/src/main/java/com/yahoo/vespa/hosted/node/verification/hardware/benchmarks/DiskBenchmark.java
+++ b/node-maintainer/src/main/java/com/yahoo/vespa/hosted/node/verification/hardware/benchmarks/DiskBenchmark.java
@@ -22,7 +22,7 @@ import java.util.logging.Logger;
*/
public class DiskBenchmark implements Benchmark {
- private static final String DISK_BENCHMARK_COMMAND = "(dd if=/dev/zero of=/tmp/output conv=fdatasync bs=4G count=4; rm -f /tmp/output;) 2>&1 | grep bytes | awk '{ print $8 \" \" $9 }'";
+ private static final String DISK_BENCHMARK_COMMAND = "(dd if=/dev/zero of=/home/y/tmp/output conv=fdatasync bs=4G count=4; rm -f /home/y/tmp/output;) 2>&1 | grep bytes | awk '{ print $8 \" \" $9 }'";
private static final String KILO_BYTE_SEARCH_WORD = "kB/s";
private static final String MEGA_BYTE_SEARCH_WORD = "MB/s";
private static final String GIGA_BYTE_SEARCH_WORD = "GB/s";