From 099146c20a013be84b22f67402619f6e52d22d69 Mon Sep 17 00:00:00 2001 From: desrosj Date: Wed, 11 Oct 2023 15:56:24 +0000 Subject: [PATCH] Build/Test Tools: Increase the number of retries when restarting a workflow. This increases the number of times to retry restarting a workflow from 2 to 10. Retries use exponential backoff to space out retries. In most cases, only 2 retries was sufficient. However, there are occasionally scenarios where the original workflow is still running and cannot be restarted, resulting in an error. This typically happens during periods of ongoing service degradation, or workflows with a significant number of jobs (GitHub Actions is sometimes very slow to mark these as finished). See #58867. Built from https://develop.svn.wordpress.org/trunk@56829 git-svn-id: http://core.svn.wordpress.org/trunk@56341 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 8f732d1f05..84b7da2383 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-beta3-56828'; +$wp_version = '6.4-beta3-56829'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.