We need to account for an addional `DEFAULT_DELAY_VARIABILITY` timeout for the lag detector task to be executed after its scheduled. Closes #62383
This commit is contained in:
parent
69e72656fa
commit
a754fd8020
|
@ -1464,7 +1464,6 @@ public class CoordinatorTests extends AbstractCoordinatorTestCase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/62383")
|
|
||||||
public void testLogsMessagesIfPublicationDelayed() throws IllegalAccessException {
|
public void testLogsMessagesIfPublicationDelayed() throws IllegalAccessException {
|
||||||
try (Cluster cluster = new Cluster(between(3, 5))) {
|
try (Cluster cluster = new Cluster(between(3, 5))) {
|
||||||
cluster.runRandomly();
|
cluster.runRandomly();
|
||||||
|
@ -1510,7 +1509,7 @@ public class CoordinatorTests extends AbstractCoordinatorTestCase {
|
||||||
});
|
});
|
||||||
cluster.getAnyLeader().submitValue(randomLong());
|
cluster.getAnyLeader().submitValue(randomLong());
|
||||||
cluster.runFor(defaultMillis(PUBLISH_TIMEOUT_SETTING) + 2 * DEFAULT_DELAY_VARIABILITY
|
cluster.runFor(defaultMillis(PUBLISH_TIMEOUT_SETTING) + 2 * DEFAULT_DELAY_VARIABILITY
|
||||||
+ defaultMillis(LagDetector.CLUSTER_FOLLOWER_LAG_TIMEOUT_SETTING),
|
+ defaultMillis(LagDetector.CLUSTER_FOLLOWER_LAG_TIMEOUT_SETTING) + DEFAULT_DELAY_VARIABILITY,
|
||||||
"waiting for messages to be emitted");
|
"waiting for messages to be emitted");
|
||||||
|
|
||||||
mockLogAppender.assertAllExpectationsMatched();
|
mockLogAppender.assertAllExpectationsMatched();
|
||||||
|
|
Loading…
Reference in New Issue