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 <noreply@anthropic.com>
This commit is contained in:
Jake Barnby
2026-02-09 21:03:56 +13:00
co-authored by Claude Opus 4.6
parent b597fb9956
commit 4412be13f0
+1 -1
View File
@@ -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];
}