Merge "Fix wrong variable in log message in BatchUpdate"

This commit is contained in:
David Pursehouse 2016-10-18 00:35:47 +00:00 committed by Gerrit Code Review
commit 0457e24291

View File

@ -664,11 +664,9 @@ public class BatchUpdate implements AutoCloseable {
op.updateRepo(ctx);
}
if (!repoOnlyOps.isEmpty()) {
logDebug("Executing updateRepo on {} RepoOnlyOps", ops.size());
for (RepoOnlyOp op : repoOnlyOps) {
op.updateRepo(ctx);
}
logDebug("Executing updateRepo on {} RepoOnlyOps", repoOnlyOps.size());
for (RepoOnlyOp op : repoOnlyOps) {
op.updateRepo(ctx);
}
if (inserter != null) {