From 4412be13f0d88e612759c4f5f76ff82cfae65bc3 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Mon, 9 Feb 2026 21:03:56 +1300 Subject: [PATCH] fix: Increase Proxy deployment activation timeout from 100s to 200s Same issue as Sites - under CI parallel load the deployment builds successfully but activation propagation takes longer than 100s. Co-Authored-By: Claude Opus 4.6 --- tests/e2e/Services/Proxy/ProxyBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/Services/Proxy/ProxyBase.php b/tests/e2e/Services/Proxy/ProxyBase.php index c6d63495a0..114052eb42 100644 --- a/tests/e2e/Services/Proxy/ProxyBase.php +++ b/tests/e2e/Services/Proxy/ProxyBase.php @@ -213,7 +213,7 @@ trait ProxyBase 'x-appwrite-key' => $this->getProject()['apiKey'], ])); $this->assertEquals($deploymentId, $site['body']['deploymentId'], 'Deployment is not activated, deployment: ' . json_encode($site['body'], JSON_PRETTY_PRINT)); - }, 100000, 500); + }, 200000, 500); return ['siteId' => $siteId, 'deploymentId' => $deploymentId]; }