Skip to content
Snippets Groups Projects
Commit e02fde19 authored by Derek Hudson's avatar Derek Hudson
Browse files

Testing another potential fix.

parent a09dd012
No related tags found
1 merge request!563Testing with allowing some indexer failures in the Notification integration tests.
Pipeline #311694 failed
......@@ -393,8 +393,10 @@ public class TestNotificationsEndpoint {
List<Message> sqsMessages = messagesLists.get(0);
storageUtils.assertFirstMessagesSimilar(expectedStorageMessage, sqsMessages);
int failedCount = 0;
int timeout = 300;
while (failedCount < MAX_RETRIES) {
messagesLists = pollForMessages(indexerQueue);
messagesLists = pollForMessages(timeout, 1, indexerQueue);
timeout = 30;
assertEquals(1, messagesLists.size());
Instant end = Instant.now();
sqsMessages = messagesLists.get(0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment