This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix: Get background jobs info
version-14
leela
3 years ago
committed by
Leela vadlamudi
parent
73843b0ab3
commit
d333b00904
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
frappe/core/page/background_jobs/background_jobs.py
+ 2
- 1
frappe/core/page/background_jobs/background_jobs.py
View File
@@ -67,7 +67,8 @@ def get_info(show_failed=False) -> List[Dict]:
fail_registry = queue.failed_job_registry
for job_id in fail_registry.get_job_ids():
job = queue.fetch_job(job_id)
add_job(job, queue.name)
if job:
add_job(job, queue.name)
return jobs
Write
Preview
Loading…
Cancel
Save