Github user kchilton2 commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/256#discussion_r159509885
--- Diff:
dao/mongodb.rya/src/main/java/org/apache/rya/mongodb/EmbeddedMongoFactory.java
---
@@ -79,19 +79,27 @@ private int findRandomOpenPortOnAllLocalInterfaces()
throws IOException {
/**
* Creates a new Mongo connection.
- *
+ *
* @throws MongoException
* @throws UnknownHostException
*/
public MongoClient newMongoClient() throws UnknownHostException,
MongoException {
return new MongoClient(new
ServerAddress(mongodProcess.getConfig().net().getServerAddress(),
mongodProcess.getConfig().net().getPort()));
}
+ /**
+ * Gives access to the process configuration.
--- End diff --
Done.
---