You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by to...@apache.org on 2014/10/17 18:35:36 UTC

[49/49] git commit: Fixes incorrect seek value on edge types

Fixes incorrect seek value on edge types


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/5a041078
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/5a041078
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/5a041078

Branch: refs/heads/two-dot-o
Commit: 5a0410780858836506207287ac984a7331f06aa6
Parents: 059a952
Author: Todd Nine <to...@apache.org>
Authored: Fri Oct 17 10:34:07 2014 -0600
Committer: Todd Nine <to...@apache.org>
Committed: Fri Oct 17 10:34:07 2014 -0600

----------------------------------------------------------------------
 .../main/java/org/apache/usergrid/corepersistence/CpWalker.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/5a041078/stack/core/src/main/java/org/apache/usergrid/corepersistence/CpWalker.java
----------------------------------------------------------------------
diff --git a/stack/core/src/main/java/org/apache/usergrid/corepersistence/CpWalker.java b/stack/core/src/main/java/org/apache/usergrid/corepersistence/CpWalker.java
index 636cc91..ecf7787 100644
--- a/stack/core/src/main/java/org/apache/usergrid/corepersistence/CpWalker.java
+++ b/stack/core/src/main/java/org/apache/usergrid/corepersistence/CpWalker.java
@@ -81,7 +81,7 @@ public class CpWalker {
         //only search edge types that start with collections
 
         Observable<String> edgeTypes = gm.getEdgeTypesFromSource(
-                       new SimpleSearchEdgeType( applicationId, CpNamingUtils.EDGE_COLL_SUFFIX+"users", null ) );
+                       new SimpleSearchEdgeType( applicationId, CpNamingUtils.EDGE_COLL_SUFFIX, null ) );
 
         edgeTypes.flatMap( new Func1<String, Observable<Edge>>() {
             @Override