From 6b9fffb369b7f359d2b680caa4081fd39d1acb68 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 29 Jan 2025 18:19:21 +0000 Subject: [PATCH] Build/Test Tools: Add a retry mechanism for tests that perform external HTTP requests. While the `skipTestOnTimeout()` method will catch a timeout and prevent it from causing a test to fail, other errors such as a failed DNS lookup or HTTPS handshake can still cause a test to unnecessarily fail. This introduces a simple retry mechanism that will hopefully further reduce the flakiness of tests that perform HTTP API requests. Fixes #62830 Built from https://develop.svn.wordpress.org/trunk@59729 git-svn-id: http://core.svn.wordpress.org/trunk@59071 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index a892673925..6d93b76756 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59728'; +$wp_version = '6.8-alpha-59729'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.