We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba71d52 commit 5d5547bCopy full SHA for 5d5547b
1 file changed
indexer/f95zone.py
@@ -30,6 +30,9 @@
30
"You have been temporarily blocked because of a large amount of requests, please try again later",
31
)
32
TEMP_ERROR_MESSAGES = (
33
+ b'<div id="cf-error-details" class="p-0">',
34
+ b"<b>504 - Gateway Timeout .</b>",
35
+ b'<body data-template="error">',
36
b"<title>502 Bad Gateway</title>",
37
b"<title>Error 502</title>",
38
b"An unexpected error occurred. Please try again later.",
@@ -68,7 +71,7 @@ class IndexerError:
68
71
69
72
70
73
ERROR_SESSION_LOGGED_OUT = IndexerError(
- "SESSION_LOGGED_OUT", dt.timedelta(hours=2).total_seconds()
74
+ "SESSION_LOGGED_OUT", dt.timedelta(minutes=15).total_seconds()
75
76
ERROR_F95ZONE_RATELIMIT = IndexerError(
77
"F95ZONE_RATELIMIT", dt.timedelta(minutes=15).total_seconds()
0 commit comments