Scheduled tasks timeout, selenium memory leak possible fix

This commit is contained in:
Luciano Gervasoni
2025-04-07 19:12:36 +02:00
parent d41fb26a99
commit 296a8fe8a8
4 changed files with 11 additions and 8 deletions

View File

@@ -25,7 +25,7 @@ def link_list(request):
# List of links
list_links = \
[ os.path.join(app_url, "admin"), os.path.join(app_url, "urls") ] + \
[ os.path.join(app_url, "logs", log_type) for log_type in ["debug", "info", "error"] ] + \
[ os.path.join(app_url, "logs", log_type) for log_type in ["debug", "info", "warning"] ] + \
[ os.path.join(app_url, "task", l) for l in links_fetch + links_process ]
# Json
return JsonResponse({"links": list_links })