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
When curling http://localhost:8080, the status code will be 200.
This is because SimpleResponse.setStatus uses Status.getStatus(statusCode) from SimpleHttpFramework under the hood and the returns 200 when the statusCode is not in the Status enum.
429 is missing from this enum.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
When curling
http://localhost:8080
, the status code will be200
.This is because
SimpleResponse.setStatus
usesStatus.getStatus(statusCode)
fromSimpleHttpFramework
under the hood and the returns200
when thestatusCode
is not in theStatus
enum.429
is missing from this enum.The text was updated successfully, but these errors were encountered: