RepoSequence: Use metadata repository as in the rest of notedb

Change-Id: Ib22335314415ca608d0061ca8f68c13da70ddfe6
This commit is contained in:
Dave Borowitz
2016-02-04 10:45:03 -05:00
parent f7ba00013d
commit 564ecb7031
2 changed files with 4 additions and 4 deletions

View File

@@ -129,7 +129,7 @@ public class RepoSequence {
}
private void acquire() throws OrmException {
try (Repository repo = repoManager.openRepository(projectName);
try (Repository repo = repoManager.openMetadataRepository(projectName);
RevWalk rw = new RevWalk(repo)) {
TryAcquire attempt = new TryAcquire(repo, rw);
RefUpdate.Result result = retryer.call(attempt);