Skip to content

Commit 74ebed1

Browse files
committed
Increase the number of allowed requests
1 parent d645bea commit 74ebed1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rnacentral/apiv1/views.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -473,10 +473,10 @@ class SecondaryStructureSpeciesSpecificList(generics.ListAPIView):
473473

474474
def get_throttles(self):
475475
class CustomAnonRateThrottle(AnonRateThrottle):
476-
rate = "10/minute"
476+
rate = "180/minute"
477477

478478
class CustomUserRateThrottle(UserRateThrottle):
479-
rate = "20/minute"
479+
rate = "300/minute"
480480

481481
return [CustomAnonRateThrottle(), CustomUserRateThrottle()]
482482

0 commit comments

Comments
 (0)