We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbad063 commit 4f1e4e7Copy full SHA for 4f1e4e7
services/web/server/src/simcore_service_webserver/security/_authz_policy.py
@@ -30,8 +30,10 @@
30
_SECOND = 1 # in seconds
31
_MINUTE: Final = 60 * _SECOND
32
_AUTHZ_BURST_CACHE_TTL: Final = (
33
- # Rationale: a user's access to a product does not change that frequently
34
- # Keeps a cache during bursts to avoid stress on the database
+ # WARNING: TLL=0 means it never expires
+ # Rationale:
35
+ # a user's access to a product does not change that frequently
36
+ # Keeps a cache during bursts to avoid stress on the database
37
38
* _MINUTE
39
)
0 commit comments