diff --git a/apiserver/apiserver/api/throttles.py b/apiserver/apiserver/api/throttles.py index ade5c33..c2d0b4f 100644 --- a/apiserver/apiserver/api/throttles.py +++ b/apiserver/apiserver/api/throttles.py @@ -22,6 +22,8 @@ class LoggingThrottle(throttling.BaseThrottle): pass elif path.startswith('/stats/'): return True + elif path == '/sessions/' and user == None: + return True if request.data: data = request.data.dict()