1
0
Fork 0
mirror of synced 2024-07-04 06:00:53 +12:00

Fix cold-start bug

This commit is contained in:
Matej Bačo 2023-02-14 11:35:49 +00:00
parent 20bc1ab00e
commit d2ffa3e7c6
2 changed files with 2 additions and 3 deletions

View file

@ -1216,7 +1216,7 @@ App::post('/v1/functions/:functionId/executions')
variables: $vars,
timeout: $function->getAttribute('timeout', 0),
image: $runtime['image'],
source: $build->getAttribute('path', ''),
source: $deployment->getAttribute('path', ''),
entrypoint: $deployment->getAttribute('entrypoint', ''),
path: $path,
method: $method,

View file

@ -130,7 +130,6 @@ Server::setResource('execute', function () {
/** Execute function */
try {
\var_dump($build->getAttribute('path', ''));
$client = new Executor(App::getEnv('_APP_EXECUTOR_HOST'));
$executionResponse = $client->createExecution(
projectId: $project->getId(),
@ -140,7 +139,7 @@ Server::setResource('execute', function () {
variables: $vars,
timeout: $function->getAttribute('timeout', 0),
image: $runtime['image'],
source: $build->getAttribute('path', ''),
source: $deployment->getAttribute('path', ''),
entrypoint: $deployment->getAttribute('entrypoint', ''),
path: $path,
method: $method,