From f249958cd3d83220d04409ce231bf77ff6d68b9b Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Sat, 27 May 2023 19:16:39 +0200 Subject: [PATCH] [skip ci] Add more patterns to run-tests.php retry list CURL: 404: Page Not Found IMAP: Can't create a temporary mailbox: [ALREADYEXISTS] Mailbox already exists Sockets: socket_bind(): Unable to bind address [98]: Address already in use --- run-tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.php b/run-tests.php index 14eb45eecd6..63ae57a35c8 100755 --- a/run-tests.php +++ b/run-tests.php @@ -2877,7 +2877,7 @@ SH; function error_may_be_retried(string $output): bool { - return preg_match('((timed out)|(connection refused))i', $output) === 1; + return preg_match('((timed out)|(connection refused)|(404: page not found)|(address already in use)|(mailbox already exists))i', $output) === 1; } /**