diff --git a/CHANGES.md b/CHANGES.md index 43a08184a..b1a7cc02a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/app/controllers/api/health.php b/app/controllers/api/health.php index e244a6b46..e2b3c3776 100644 --- a/app/controllers/api/health.php +++ b/app/controllers/api/health.php @@ -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')]); } );