ReviewDbBatchUpdate: Fix typo in member name
Change-Id: I2a7267e3046de569eac6f9a6ebd2804cab0ed171
This commit is contained in:
@@ -304,7 +304,7 @@ public class ReviewDbBatchUpdate extends BatchUpdate {
|
||||
private final ChangeNotes.Factory changeNotesFactory;
|
||||
private final ChangeUpdate.Factory changeUpdateFactory;
|
||||
private final GitReferenceUpdated gitRefUpdated;
|
||||
private final ListeningExecutorService changeUpdateExector;
|
||||
private final ListeningExecutorService changeUpdateExecutor;
|
||||
private final Metrics metrics;
|
||||
private final NoteDbUpdateManager.Factory updateManagerFactory;
|
||||
private final NotesMigration notesMigration;
|
||||
@@ -322,7 +322,7 @@ public class ReviewDbBatchUpdate extends BatchUpdate {
|
||||
AllUsersName allUsers,
|
||||
ChangeIndexer indexer,
|
||||
ChangeNotes.Factory changeNotesFactory,
|
||||
@ChangeUpdateExecutor ListeningExecutorService changeUpdateExector,
|
||||
@ChangeUpdateExecutor ListeningExecutorService changeUpdateExecutor,
|
||||
ChangeUpdate.Factory changeUpdateFactory,
|
||||
@GerritPersonIdent PersonIdent serverIdent,
|
||||
GitReferenceUpdated gitRefUpdated,
|
||||
@@ -338,7 +338,7 @@ public class ReviewDbBatchUpdate extends BatchUpdate {
|
||||
super(repoManager, serverIdent, project, user, when);
|
||||
this.allUsers = allUsers;
|
||||
this.changeNotesFactory = changeNotesFactory;
|
||||
this.changeUpdateExector = changeUpdateExector;
|
||||
this.changeUpdateExecutor = changeUpdateExecutor;
|
||||
this.changeUpdateFactory = changeUpdateFactory;
|
||||
this.gitRefUpdated = gitRefUpdated;
|
||||
this.indexer = indexer;
|
||||
@@ -440,7 +440,7 @@ public class ReviewDbBatchUpdate extends BatchUpdate {
|
||||
try {
|
||||
logDebug("Executing change ops (parallel? %s)", parallel);
|
||||
ListeningExecutorService executor =
|
||||
parallel ? changeUpdateExector : MoreExecutors.newDirectExecutorService();
|
||||
parallel ? changeUpdateExecutor : MoreExecutors.newDirectExecutorService();
|
||||
|
||||
tasks = new ArrayList<>(ops.keySet().size());
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user