mirror of
https://github.com/microsoft/WSL.git
synced 2025-12-10 00:44:55 -06:00
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:
parent
b9e74a3361
commit
04eb4d4e8f
@ -249,7 +249,9 @@ class InstallerTests
|
||||
|
||||
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 (...)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user