From 96956dbda59441bda8ad36e8f8f7046b06829ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Fri, 6 Dec 2024 20:58:01 +0100 Subject: [PATCH] Temporary QA server fix --- app/config/runtimes/specifications.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/config/runtimes/specifications.php b/app/config/runtimes/specifications.php index 1fe31e3b8f..9ec6fc6059 100644 --- a/app/config/runtimes/specifications.php +++ b/app/config/runtimes/specifications.php @@ -5,17 +5,17 @@ use Appwrite\Functions\Specification; return [ Specification::S_05VCPU_512MB => [ 'slug' => Specification::S_05VCPU_512MB, - 'memory' => 2048, // TODO: Revert this, it was just for QA server + 'memory' => 4096, // TODO: Revert this, it was just for QA server 'cpus' => 1 // TODO: revert this, it's a temporary change to test function performance. ], Specification::S_1VCPU_512MB => [ 'slug' => Specification::S_1VCPU_512MB, - 'memory' => 512, + 'memory' => 4096, // TODO: Revert this, it was just for QA server 'cpus' => 1 ], Specification::S_1VCPU_1GB => [ 'slug' => Specification::S_1VCPU_1GB, - 'memory' => 1024, + 'memory' => 4096, // TODO: Revert this, it was just for QA server 'cpus' => 1 ], Specification::S_2VCPU_2GB => [