1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

patch: added classname and queue names as constants in event

This commit is contained in:
Christy Jacob 2020-12-22 18:23:12 +05:30
parent fab01abe33
commit 0a363cd78a

View file

@ -164,7 +164,7 @@ App::get('/v1/health/queue/usage')
->action(function ($response) {
/** @var Appwrite\Utopia\Response $response */
$response->json(['size' => Resque::size('v1-usage')]);
$response->json(['size' => Resque::size(Event::USAGE_QUEUE_NAME)]);
}, ['response']);
App::get('/v1/health/queue/certificates')