HHH-12374 - Order inserts sorting code gives up too soon

This commit is contained in:
Vlad Mihalcea 2018-03-13 15:28:06 +02:00
parent 83760bb55a
commit 097112353e
1 changed files with 1 additions and 1 deletions

View File

@ -1183,7 +1183,7 @@ public class ActionQueue {
boolean sorted = false;
long maxIterations = latestBatches.size() * 2;
long maxIterations = latestBatches.size() * latestBatches.size();
long iterations = 0;
sort: