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

Update to use protected container class

This commit is contained in:
Bradley Schofield 2021-07-22 14:53:30 +01:00
parent a9e7b617c0
commit 4d2f5428a2

View file

@ -384,7 +384,7 @@ class FunctionsV1 extends Worker
$value = strval($value);
});
$response = $orchestration->run(
$id = $orchestration->run(
$runtime['image'],
$container,
"",
@ -404,14 +404,13 @@ class FunctionsV1 extends Worker
$executionEnd = \microtime(true);
$list[$container] = new Container();
$list[$container]->name = $container;
$list[$container]->status = "Up";
$list[$container]->labels = array(
'appwrite-type' => 'function',
'appwrite-created' => "{$executionTime}",
);
$list[$container] = new Container($container,
$id,
"Up",
array(
'appwrite-type' => 'function',
'appwrite-created' => "{$executionTime}",
));
Console::info("Function created in " . ($executionEnd - $executionStart) . " seconds");
}