mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
Keep build size in MBs
This commit is contained in:
parent
5d9bdd4cc7
commit
6e86527eb6
1 changed files with 1 additions and 1 deletions
|
|
@ -630,7 +630,7 @@ class Builds extends Action
|
|||
|
||||
$buildSizeLimit = (int)System::getEnv('_APP_FUNCTIONS_BUILD_SIZE_LIMIT', '2000000000');
|
||||
if (isset($plan['buildSize'])) {
|
||||
$buildSizeLimit = $plan['buildSize'] * 1000 * 1000 * 1000;
|
||||
$buildSizeLimit = $plan['buildSize'] * 1000 * 1000;
|
||||
}
|
||||
if ($response['size'] > $buildSizeLimit) {
|
||||
throw new \Exception('Build size should be less than ' . number_format($buildSizeLimit / (1000 * 1000), 2) . ' MBs.');
|
||||
|
|
|
|||
Loading…
Reference in a new issue