1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00

Fix build missing libraries

This commit is contained in:
Matej Bačo 2023-03-15 07:08:43 +01:00
parent 27bf18f031
commit ca55de6f03
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -173,7 +173,7 @@ Server::setResource('execute', function () {
variables: $vars,
timeout: $function->getAttribute('timeout', 0),
image: $runtime['image'],
source: $deployment->getAttribute('path', ''),
source: $build->getAttribute('path', ''),
entrypoint: $deployment->getAttribute('entrypoint', ''),
path: $path,
method: $method,