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
Wherever an int is used for a config value, if someone accidentally provides a float number value, it will get floored (rounded down).
This can lead to misconfigurations like specifying 0.5 for the rate limiting burst_count which will get rounded down to 0 and not allow requests at all (real example: #18159).
The text was updated successfully, but these errors were encountered:
Wherever an
int
is used for a config value, if someone accidentally provides afloat
number value, it will get floored (rounded down).This can lead to misconfigurations like specifying
0.5
for the rate limitingburst_count
which will get rounded down to0
and not allow requests at all (real example: #18159).The text was updated successfully, but these errors were encountered: