You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2015/09/01 16:26:21 UTC

[05/19] incubator-tinkerpop git commit: fixed configuration issue

fixed configuration issue


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/08b57f8c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/08b57f8c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/08b57f8c

Branch: refs/heads/tp30
Commit: 08b57f8c5d8a6ea4ea15cf15405954327180d580
Parents: 1464db9
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Mon Aug 24 16:51:35 2015 +0200
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Mon Aug 24 16:51:35 2015 +0200

----------------------------------------------------------------------
 .../process/computer/bulkloading/BulkLoaderVertexProgram.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/08b57f8c/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/bulkloading/BulkLoaderVertexProgram.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/bulkloading/BulkLoaderVertexProgram.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/bulkloading/BulkLoaderVertexProgram.java
index 047455a..8ff404b 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/bulkloading/BulkLoaderVertexProgram.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/bulkloading/BulkLoaderVertexProgram.java
@@ -258,7 +258,7 @@ public class BulkLoaderVertexProgram implements VertexProgram<Tuple> {
             this.configuration.setProperty(BULK_LOADER_CLASS, bulkLoaderClass.getCanonicalName());
             if (configuration != null) {
                 configuration.getKeys().forEachRemaining(key -> this.configuration.addProperty(
-                        BULK_LOADER_VERTEX_PROGRAM_CFG_PREFIX + "." + key, configuration.getProperty(key)
+                        BULK_LOADER_CFG_PREFIX + "." + key, configuration.getProperty(key)
                 ));
             }
             return this;