Fix wrong variable in log message in BatchUpdate

Change-Id: Ib7ca67d3f0eea1aec09bfca0854cfa5bd1929ca9
This commit is contained in:
Zhen Chen
2016-10-17 14:30:54 -07:00
parent a6d76a70fd
commit c8b58edfd1

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) {