update project run target to add hadoop plugin as well

This commit is contained in:
kimchy 2010-06-29 21:42:47 +03:00
parent 3f6cd46736
commit 04ad93e8d6
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@
<orderEntry type="module" module-name="plugin-mapper-attachments" />
<orderEntry type="module" module-name="plugin-transport-memcached" />
<orderEntry type="module" module-name="plugin-analysis-icu" />
<orderEntry type="module" module-name="plugins-hadoop" />
<orderEntry type="module" module-name="plugins-cloud" />
<orderEntry type="module" module-name="test-integration" />
</component>

View File

@ -63,8 +63,8 @@ public class HdfsGatewayTests {
private Node buildNode() {
Settings settings = settingsBuilder()
.put("gateway.type", "hdfs")
// .put("gateway.hdfs.uri", "hdfs://training-vm.local:8022")
.put("gateway.hdfs.uri", "file:///")
// .put("gateway.hdfs.uri", "hdfs://training-vm.local:8022")
.put("gateway.hdfs.path", "work/hdfs/gateway")
.build();
return nodeBuilder().settings(settingsBuilder().put(settings).put("node.name", "node1")).build();