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
This commit is contained in:
Blue 2025-09-17 18:27:12 +00:00 committed by GitHub
parent b9e74a3361
commit 04eb4d4e8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -249,7 +249,9 @@ class InstallerTests
try try
{ {
wsl::shared::retry::RetryWithTimeout<void>(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<void>(pred, std::chrono::seconds(1), std::chrono::minutes(20));
} }
catch (...) catch (...)
{ {