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
+3 -3
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);