1
0
Fork 0
mirror of synced 2024-05-20 20:52:36 +12:00

Fixed queue health check

This commit is contained in:
Eldad Fux 2019-12-26 12:00:13 +02:00
parent 13580599d7
commit 21961f2191

View file

@ -101,7 +101,7 @@ $utopia->get('/v1/health/webhooks')
->label('docs', false)
->action(
function () use ($response) {
$response->json(['size' => Resque::size('webhooks')]);
$response->json(['size' => Resque::size('v1-webhooks')]);
}
);