mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Fix cold-start bug
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user