Github user kchilton2 commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/172#discussion_r160550261
--- 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 --
Since you added entity stuff back in, also add it here?
---