Github user isper3at commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/172#discussion_r160762007
--- Diff:
extras/shell/src/main/java/org/apache/rya/shell/RyaAdminCommands.java ---
@@ -320,11 +343,14 @@ public String installWithMongoParameters(
final boolean enableFreeTextIndex,
// TODO RYA-215
-// @CliOption(key = {"enableGeospatialIndex"}, mandatory =
false, help = "Use Geospatial Indexing.", unspecifiedDefaultValue = "false",
specifiedDefaultValue = "true")
-// final boolean enableGeospatialIndex,
+ // @CliOption(key = {"enableGeospatialIndex"},
mandatory = false, help = "Use Geospatial Indexing.", unspecifiedDefaultValue =
"false", specifiedDefaultValue = "true")
+ // final boolean enableGeospatialIndex,
@CliOption(key = {"enableTemporalIndex"}, mandatory = false,
help = "Use Temporal Indexing.", unspecifiedDefaultValue = "false",
specifiedDefaultValue = "true")
- final boolean enableTemporalIndex) {
+ final boolean enableTemporalIndex,
--- End diff --
I went ahead and just reverted it, was faster to just take care of it later
---