diff --git a/apiserver/apiserver/api/throttles.py b/apiserver/apiserver/api/throttles.py index e2aeb57..88c2b7f 100644 --- a/apiserver/apiserver/api/throttles.py +++ b/apiserver/apiserver/api/throttles.py @@ -19,11 +19,13 @@ class LoggingThrottle(throttling.BaseThrottle): if path.startswith('/lockout/'): return True elif path == '/stats/sign/': - pass + pass # log this one elif path.startswith('/stats/'): return True elif path == '/sessions/' and user == None: return True + elif path in ['/pinball/high_scores/']: + return True if request.data: if type(request.data) is not dict: