Read accounts by default from NoteDb

Accounts have been fully migrated to NoteDb. The change that removes the
support for accounts in ReviewDb is still pending. In the meantime make
reading accounts from NoteDb the default.

Change-Id: I1881011feaa303eb941366cc2017e14882d2f82b
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2017-08-18 14:42:35 +02:00
parent 57945a0f41
commit c050e2e760

View File

@@ -57,7 +57,7 @@ public class Accounts {
GitRepositoryManager repoManager,
AllUsersName allUsersName,
OutgoingEmailValidator emailValidator) {
this.readFromGit = cfg.getBoolean("user", null, "readAccountsFromGit", false);
this.readFromGit = cfg.getBoolean("user", null, "readAccountsFromGit", true);
this.repoManager = repoManager;
this.allUsersName = allUsersName;
this.emailValidator = emailValidator;