From 1a2cbf4982715786ef1d8e5fafd6ede4f62b7914 Mon Sep 17 00:00:00 2001 From: Heitor Neiva Date: Wed, 8 Oct 2025 14:10:07 -0700 Subject: [PATCH] feat: Increase pushmsix polling attempts Bumps the max theoretical polling time from 20 mins to 30 mins, which might be enough to overcome some of msstore's slowdowns. --- pushmsixscript/src/pushmsixscript/microsoft_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pushmsixscript/src/pushmsixscript/microsoft_store.py b/pushmsixscript/src/pushmsixscript/microsoft_store.py index ed9463d1a..fd9e81e95 100644 --- a/pushmsixscript/src/pushmsixscript/microsoft_store.py +++ b/pushmsixscript/src/pushmsixscript/microsoft_store.py @@ -17,7 +17,7 @@ # When committing a new submission, poll for completion, with # this many attempts, waiting this long between attempts. -COMMIT_POLL_MAX_ATTEMPTS = 40 +COMMIT_POLL_MAX_ATTEMPTS = 60 COMMIT_POLL_WAIT_SECONDS = 30 # Max requests retries MAX_RETRIES = 5