Github user isper3at commented on a diff in the pull request: https://github.com/apache/incubator-rya/pull/182#discussion_r130736014 --- Diff: extras/rya.geoindexing/geo.common/src/main/java/org/apache/rya/indexing/accumulo/geo/OptionalConfigUtils.java --- @@ -104,26 +116,26 @@ public static void setIndexers(final RdfCloudTripleStoreConfiguration conf) { if (ConfigUtils.getUseMongo(conf)) { if (getUseGeo(conf)) { - if (geoIndexerType == null) { + if (geoIndexerType == GeoIndexerType.UNSPECIFIED) { // Default to MongoGeoIndexer if not specified - indexList.add(MongoGeoIndexer.class.getName()); + indexList.add(GeoIndexerType.MONGO_DB.getGeoIndexerClassString()); //MongoGeoIndexer.class.getName()); --- End diff -- remove commented out code
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---