commit | 715f745e7769cbca90c9f4f3e03b701f5fbd2495 | [log] [tgz] |
---|---|---|
author | madhusudancs@gmail.com <madhusudancs@gmail.com@123451ca-8445-de46-9d55-352943316053> | Fri Mar 08 07:02:34 2013 +0000 |
committer | madhusudancs@gmail.com <madhusudancs@gmail.com@123451ca-8445-de46-9d55-352943316053> | Fri Mar 08 07:02:34 2013 +0000 |
tree | e205039613572daf6b3db28187b83f358ba34bac | |
parent | 3155d599d4e77071279a6668bd19ecc104218306 [diff] |
Add the additional datasetIPAddress parameter required for the NCConfig in all the tests and implement the basic infrastructure required to run hyracks integration tests using ResultWriterOperatorDescriptor. git-svn-id: https://hyracks.googlecode.com/svn/branches/fullstack_hyracks_result_distribution@3061 123451ca-8445-de46-9d55-352943316053
diff --git a/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/util/PregelixHyracksIntegrationUtil.java b/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/util/PregelixHyracksIntegrationUtil.java index 2a2e2bf..c343763 100644 --- a/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/util/PregelixHyracksIntegrationUtil.java +++ b/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/util/PregelixHyracksIntegrationUtil.java
@@ -64,6 +64,7 @@ ncConfig1.clusterNetIPAddress = "localhost"; ncConfig1.ccPort = TEST_HYRACKS_CC_PORT; ncConfig1.dataIPAddress = "127.0.0.1"; + ncConfig1.datasetIPAddress = "127.0.0.1"; ncConfig1.nodeId = NC1_ID; nc1 = new NodeControllerService(ncConfig1); nc1.start(); @@ -73,6 +74,7 @@ ncConfig2.clusterNetIPAddress = "localhost"; ncConfig2.ccPort = TEST_HYRACKS_CC_PORT; ncConfig2.dataIPAddress = "127.0.0.1"; + ncConfig2.datasetIPAddress = "127.0.0.1"; ncConfig2.nodeId = NC2_ID; nc2 = new NodeControllerService(ncConfig2); nc2.start();