Using Laravel 5.6
I don't want to use withoutMiddleware
- I am trying instead to override the default throttle settings, but nothing seems to work.
'api' => [
'throttle:60,1',
'auth:api',
],
Changing the throttle number seems to do absolutely nothing.
The error is always:
(
[message] => Too Many Attempts.
[exception] => Symfony\Component\HttpKernel\Exception\HttpException
[file] => /root/laravel/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php
[line] => 120
)
It runs locally, but on circleci, no cigar - too many attempts.
It almost seems like only circlci is ignoring any settings relating to throttling and doing it's own dang thing.
I've attempted changing everything - but the only thing that stops it happening is withoutMiddleware
and that has other side effects I don't want.