momentumfrc / attendance-manager

Keep track of the attendence of our team members by allowing mentors to check students in and out.
0 stars 0 forks source link

[Api] Increase rate limit #43

Closed lost1227 closed 1 year ago

lost1227 commented 1 year ago

Previously, the app would limit requests to a maximum of 60/s/user. However, with a polling interval of 1s on the main screen, we could hit this very quickly (especially since polling performs 2 individual requests).

This increases the rate limit to 180 requests/s/user.

Fixes #39 (hopefully)