1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

Merge pull request #1568 from TorstenDittmann/fix-functions-cpu-env

fix(functions): properly cast cpu counts variable
This commit is contained in:
Eldad A. Fux 2021-09-02 23:02:07 +03:00 committed by GitHub
commit 42e4c46a08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -410,9 +410,9 @@ class FunctionsV1 extends Worker
$executionStart = \microtime(true);
$executionTime = \time();
$orchestration->setCpus(App::getEnv('_APP_FUNCTIONS_CPUS', '1'));
$orchestration->setMemory(App::getEnv('_APP_FUNCTIONS_MEMORY', '256'));
$orchestration->setSwap(App::getEnv('_APP_FUNCTIONS_MEMORY_SWAP', '256'));
$orchestration->setCpus((int) App::getEnv('_APP_FUNCTIONS_CPUS', 0));
$orchestration->setMemory((int) App::getEnv('_APP_FUNCTIONS_MEMORY', 256));
$orchestration->setSwap((int) App::getEnv('_APP_FUNCTIONS_MEMORY_SWAP', 256));
foreach ($vars as &$value) {
$value = strval($value);