Repository: incubator-usergrid Updated Branches: refs/heads/USERGRID-501 32cb153d1 -> 33b1b69fc
remove comment Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/33b1b69f Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/33b1b69f Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/33b1b69f Branch: refs/heads/USERGRID-501 Commit: 33b1b69fc325c6c4e3bc2fe5628befb6bef2a43d Parents: 32cb153 Author: Shawn Feldman <[email protected]> Authored: Mon Mar 30 10:05:51 2015 -0600 Committer: Shawn Feldman <[email protected]> Committed: Mon Mar 30 10:05:51 2015 -0600 ---------------------------------------------------------------------- .../serialization/impl/migration/EdgeDataMigrationImpl.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/33b1b69f/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/serialization/impl/migration/EdgeDataMigrationImpl.java ---------------------------------------------------------------------- diff --git a/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/serialization/impl/migration/EdgeDataMigrationImpl.java b/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/serialization/impl/migration/EdgeDataMigrationImpl.java index 411e318..2e0412f 100644 --- a/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/serialization/impl/migration/EdgeDataMigrationImpl.java +++ b/stack/corepersistence/graph/src/main/java/org/apache/usergrid/persistence/graph/serialization/impl/migration/EdgeDataMigrationImpl.java @@ -87,9 +87,7 @@ public class EdgeDataMigrationImpl implements DataMigration<GraphNode> { final Observable<List<Edge>> observable = migrationDataProvider.getData().flatMap( graphNode -> { final GraphManager gm = graphManagerFactory.createEdgeManager( graphNode.applicationScope ); - - //TODO: maybe move to retreive all indexes : https://github.com/elastic/elasticsearch/blob/master/src/main/java/org/elasticsearch/rest/action/cat/RestIndicesAction.java - //https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=get%20all%20indexes%20elasticsearch + //get edges from the source return edgesFromSourceObservable.edgesFromSource( gm, graphNode.entryNode ).buffer( 1000 ) .doOnNext( edges -> {
