@samitouri / QOSAMI-WSL / commits / 04eb4d4e

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

Blue committed Sep 17, 2025 at 18:27 UTC 04eb4d4e8f514ba87479a5753f0038491e7922e0
1 file changed +3 -1
test/windows/InstallerTests.cpp
+3 -1
@@ -249,7 +249,9 @@ class InstallerTests
249
250 try
251 {
252 - wsl::shared::retry::RetryWithTimeout<void>(pred, std::chrono::seconds(1), std::chrono::minutes(2));
252 + // It is possible for the 'DeprovisionMsix' stage of the MSI installation to take a long time.
253 + // On vb_release, up to 7 minutes have been observed. Wait for up to 20 minutes to be safe.
254 + wsl::shared::retry::RetryWithTimeout<void>(pred, std::chrono::seconds(1), std::chrono::minutes(20));
255 }
256 catch (...)
257 {