Skip to content

Commit

Permalink
[CustomRoles] increase interaction timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
noahkw committed Feb 10, 2024
1 parent 476df59 commit 87a4450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/base_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@


class BaseView(View):
DELETE_RESPONSE_AFTER = 120.0
DELETE_RESPONSE_AFTER = 5 * 60.0

def __init__(self):
super().__init__()
self.timeout = 120.0
self.timeout = 5 * 60.0

"""
Has to be called and checked by extending classes.
Expand Down

0 comments on commit 87a4450

Please sign in to comment.