зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1570543 - Fix incorrect batch index after merging batches. r=gw
Differential Revision: https://phabricator.services.mozilla.com/D41166 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
d7dc23922f
Коммит
01481c8d58
|
@ -429,8 +429,9 @@ impl AlphaBatchContainer {
|
|||
|
||||
match batch_index {
|
||||
Some(batch_index) => {
|
||||
self.alpha_batches[batch_index + min_batch_index].merge(other_batch);
|
||||
min_batch_index = batch_index;
|
||||
let index = batch_index + min_batch_index;
|
||||
self.alpha_batches[index].merge(other_batch);
|
||||
min_batch_index = index;
|
||||
}
|
||||
None => {
|
||||
self.alpha_batches.push(other_batch);
|
||||
|
|
Загрузка…
Ссылка в новой задаче