Github user isper3at commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/172#discussion_r160532183
--- Diff:
dao/mongodb.rya/src/main/java/org/apache/rya/mongodb/instance/MongoDetailsAdapter.java
---
@@ -124,11 +123,6 @@ private static DBObject toDBObject(final
PCJIndexDetails pcjIndexDetails) {
// Is Enabled
builder.add(PCJ_ENABLED_KEY, pcjIndexDetails.isEnabled());
- // Fluo Details if present.
- if(pcjIndexDetails.getFluoDetails().isPresent()) {
--- End diff --
This seems like a bigger problem outside the scope of this. I deleted it
because tests were failing throughout installconfig expecting to see fluo stuff
and it not being there. Adding it back in would require changes to be made
elsewhere to get glue code
---