1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00

Revert "Merge branch 'feat-db-per-process' of github.com:appwrite/appwrite into feat-db-per-process"

This reverts commit 6f42305484, reversing
changes made to 69abd222e8.
This commit is contained in:
Jake Barnby 2023-10-12 15:30:01 +13:00
parent 6f42305484
commit 096a529618
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C
7 changed files with 8 additions and 4 deletions

View file

@ -1680,6 +1680,8 @@ App::post('/v1/functions/:functionId/executions')
$execution->setAttribute('logs', $executionResponse['logs']);
$execution->setAttribute('errors', $executionResponse['errors']);
$execution->setAttribute('duration', $executionResponse['duration']);
} catch (\Throwable $th) {
$durationEnd = \microtime(true);

View file

@ -19,6 +19,7 @@ class Audit extends Event
$this
->setQueue(Event::AUDITS_QUEUE_NAME)
->setClass(Event::BUILDS_CLASS_NAME);
}
/**

View file

@ -15,6 +15,7 @@ require_once __DIR__ . '/../../../app/init.php';
class EventTest extends TestCase
{
protected ?Event $object = null;
protected string $queue = '';