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

Fixed output of /v1/health/queue/certificates returning wrong data

This commit is contained in:
Eldad Fux 2020-06-01 07:04:40 +03:00
parent 571f7fb8b8
commit 21ff792ad7
2 changed files with 7 additions and 1 deletions

View file

@ -1,7 +1,13 @@
# Version 0.7.0 (NOT-RELEASED)
## Features
- New route in Locale API to fetch a list of languages
## Bug Fixes
- Fixed output of /v1/health/queue/certificates returning wrong data
# Version 0.6.2 (PRE-RELEASE)
## Features

View file

@ -158,7 +158,7 @@ $utopia->get('/v1/health/queue/certificates')
->label('sdk.description', '/docs/references/health/get-queue-certificates.md')
->action(
function () use ($response) {
$response->json(['size' => Resque::size('v1-usage')]);
$response->json(['size' => Resque::size('v1-certificates')]);
}
);