change var name to better reflect the fact that its data and not work

This commit is contained in:
kimchy 2011-02-17 01:07:05 +02:00
parent 3c9dafe67b
commit 6ffd60dfb5
1 changed files with 7 additions and 7 deletions

View File

@ -62,7 +62,7 @@ public class RollingRestartStressTest {
private TimeValue period = TimeValue.timeValueMinutes(20); private TimeValue period = TimeValue.timeValueMinutes(20);
private boolean clearNodeWork = true; private boolean clearNodeData = true;
private Node client; private Node client;
@ -105,8 +105,8 @@ public class RollingRestartStressTest {
return this; return this;
} }
public RollingRestartStressTest cleanNodeWork(boolean clearNodeWork) { public RollingRestartStressTest cleanNodeData(boolean clearNodeData) {
this.clearNodeWork = clearNodeWork; this.clearNodeData = clearNodeData;
return this; return this;
} }
@ -141,10 +141,10 @@ public class RollingRestartStressTest {
// start doing the rolling restart // start doing the rolling restart
int nodeIndex = 0; int nodeIndex = 0;
while (true) { while (true) {
File nodeWork = ((InternalNode) nodes[nodeIndex]).injector().getInstance(NodeEnvironment.class).nodeDataLocation(); File nodeData = ((InternalNode) nodes[nodeIndex]).injector().getInstance(NodeEnvironment.class).nodeDataLocation();
nodes[nodeIndex].close(); nodes[nodeIndex].close();
if (clearNodeWork) { if (clearNodeData) {
FileSystemUtils.deleteRecursively(nodeWork); FileSystemUtils.deleteRecursively(nodeData);
} }
try { try {
@ -277,7 +277,7 @@ public class RollingRestartStressTest {
.initialNumberOfDocs(1000) .initialNumberOfDocs(1000)
.textTokens(150) .textTokens(150)
.numberOfFields(10) .numberOfFields(10)
.cleanNodeWork(true) .cleanNodeData(true)
.indexers(5) .indexers(5)
.indexerThrottle(TimeValue.timeValueMillis(50)) .indexerThrottle(TimeValue.timeValueMillis(50))
.period(TimeValue.timeValueMinutes(10)); .period(TimeValue.timeValueMinutes(10));