in src/main/java/org/apache/sling/nosql/mongodb/resourceprovider/impl/MongoDBNoSqlAdapter.java [125:132]
public void checkConnection() throws LoginException {
// the query is not relevant, just the successful round-trip
try {
collection.find(Filters.eq(PN_PATH, "/")).first();
} catch (MongoException e) {
throw new LoginException(e);
}
}