From 04eb4d4e8f514ba87479a5753f0038491e7922e0 Mon Sep 17 00:00:00 2001 From: Blue Date: Wed, 17 Sep 2025 18:27:12 +0000 Subject: [PATCH] Increase the MSI installation timeout to 20 minutes (#13489) * Increase the MSI installation timeout to 20 minutes * Increase the MSI installation timeout to 20 minutes --- test/windows/InstallerTests.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/windows/InstallerTests.cpp b/test/windows/InstallerTests.cpp index ce5b5dc..9b265f6 100644 --- a/test/windows/InstallerTests.cpp +++ b/test/windows/InstallerTests.cpp @@ -249,7 +249,9 @@ class InstallerTests try { - wsl::shared::retry::RetryWithTimeout(pred, std::chrono::seconds(1), std::chrono::minutes(2)); + // It is possible for the 'DeprovisionMsix' stage of the MSI installation to take a long time. + // On vb_release, up to 7 minutes have been observed. Wait for up to 20 minutes to be safe. + wsl::shared::retry::RetryWithTimeout(pred, std::chrono::seconds(1), std::chrono::minutes(20)); } catch (...) {