mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 01:18:37 +00:00
Temporary QA server fix
This commit is contained in:
parent
15cc64e68b
commit
96956dbda5
1 changed files with 3 additions and 3 deletions
|
|
@ -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 => [
|
||||
|
|
|
|||
Loading…
Reference in a new issue