You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had a customer attempt to sync a check-ins config that had some check-ins using cron scheduling, but their account didn't support that feature, so the API returned an error. The client reported the error as "You have hit your exception rate limit.", which isn't correct.
php artisan honeybadger:checkins:sync
Honeybadger\Exceptions\ServiceException
You have hit your exception rate limit.
at vendor/honeybadger-io/honeybadger-php/src/Exceptions/ServiceException.php:31
27▕ * @return ServiceException
28▕ */
29▕ public static function rateLimit(): self
30▕ {
➜ 31▕ return new static('You have hit your exception rate limit.');
32▕ }
33▕
34▕ /**
35▕ * @return ServiceException
+20 vendor frames
21 artisan:13
Illuminate\Foundation\Application::handleCommand(Object(Symfony\Component\Console\Input\ArgvInput))
@stympy I remember seeing this my self when implementing the integration, but I'm not sure if there was anything I could do from the client side to deduce the real reason for the error (i.e. account not supporting the feature vs rate limit). I'll take another look and come back to you.
We had a customer attempt to sync a check-ins config that had some check-ins using cron scheduling, but their account didn't support that feature, so the API returned an error. The client reported the error as "You have hit your exception rate limit.", which isn't correct.
Front conversations
The text was updated successfully, but these errors were encountered: