Private GIT

Skip to content
Snippets Groups Projects
Commit 7c3d576e authored by Fernando's avatar Fernando
Browse files

Make show REFRESH normal priority - avoid stuck other threads

It user has too many shows. it can take a lot to refresh and other higher priorities have to wait like manual search, search, daily search, etc

From https://github.com/SiCKRAGETV/sickrage-issues/issues/589

" Change Refresh thread to Normal instead of High (avoid show refresh stuck other threads)"
parent a237f419
Branches
Tags
No related merge requests found
......@@ -438,7 +438,7 @@ class QueueItemRefresh(ShowQueueItem):
ShowQueueItem.__init__(self, ShowQueueActions.REFRESH, show)
# do refreshes first because they're quick
self.priority = generic_queue.QueuePriorities.HIGH
self.priority = generic_queue.QueuePriorities.NORMAL
# force refresh certain items
self.force = force
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment