Ignore system.users as well.

This commit is contained in:
Olof Larsson 2016-04-25 16:47:25 +02:00
parent 4c1907ba07
commit 7cd3994cb7
No known key found for this signature in database
GPG Key ID: BBEF14F97DA52474

View File

@ -74,6 +74,7 @@ public class DriverMongo extends DriverAbstract
{
Set<String> ret = ((DbMongo)db).db.getCollectionNames();
ret.remove("system.indexes");
ret.remove("system.users");
return ret;
}