Updated Branches: refs/heads/trunk bfc647368 -> 9fe961d5c
GIRAPH-487: VertexInputPath in GiraphRunner refers to EdgeInputPath (taguan via apresta) Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/9fe961d5 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/9fe961d5 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/9fe961d5 Branch: refs/heads/trunk Commit: 9fe961d5cc3f628f4a24fe7aca20e5a28fc9114b Parents: bfc6473 Author: Alessandro Presta <[email protected]> Authored: Mon Jan 21 15:42:00 2013 -0800 Committer: Alessandro Presta <[email protected]> Committed: Mon Jan 21 15:42:00 2013 -0800 ---------------------------------------------------------------------- CHANGELOG | 2 ++ .../main/java/org/apache/giraph/GiraphRunner.java | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/9fe961d5/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index e58e197..0839c92 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ Giraph Change Log Release 0.2.0 - unreleased + GIRAPH-487: VertexInputPath in GiraphRunner refers to EdgeInputPath (taguan via apresta) + GIRAPH-481: mvn compile error when building jar file - Error with Accumulo (tavoaqp via nitay) GIRAPH-472: Refactor MapFunctions enum to be more general (ereisman) http://git-wip-us.apache.org/repos/asf/giraph/blob/9fe961d5/giraph-core/src/main/java/org/apache/giraph/GiraphRunner.java ---------------------------------------------------------------------- diff --git a/giraph-core/src/main/java/org/apache/giraph/GiraphRunner.java b/giraph-core/src/main/java/org/apache/giraph/GiraphRunner.java index 3d0e634..2e88a83 100644 --- a/giraph-core/src/main/java/org/apache/giraph/GiraphRunner.java +++ b/giraph-core/src/main/java/org/apache/giraph/GiraphRunner.java @@ -183,7 +183,7 @@ public class GiraphRunner implements Tool { Class.forName(cmd.getOptionValue("vif"))); if (cmd.hasOption("vip")) { GiraphFileInputFormat.addVertexInputPath(job.getInternalJob(), - new Path(cmd.getOptionValue("eip"))); + new Path(cmd.getOptionValue("vip"))); } else { if (LOG.isInfoEnabled()) { LOG.info("No vertex input path specified. Ensure your " +
