From 67fd22229fc53ea21c6ac79cc7af204b97de38cc Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Fri, 8 Aug 2025 21:56:29 -0400 Subject: [PATCH] adjust timeout of mcx-moniker popup to prevent race condition --- mocha-php/src/mocha-php/scripts/mcx-moniker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mocha-php/src/mocha-php/scripts/mcx-moniker.js b/mocha-php/src/mocha-php/scripts/mcx-moniker.js index 4238dc7..ad1c979 100644 --- a/mocha-php/src/mocha-php/scripts/mcx-moniker.js +++ b/mocha-php/src/mocha-php/scripts/mcx-moniker.js @@ -207,7 +207,7 @@ function McxMoniker(parentElement) var url = System.ExpandRelativePath("~/" + System.TenantName + "/inst/" + this.InstanceID + "/rel-tasks.htmld"); var xhr = new XMLHttpRequest(); - xhr.timeout = 5000; + xhr.timeout = 10000; xhr.open("GET", url); xhr.thiss = this; xhr.onreadystatechange = function(e)