mirror of
https://github.com/Lidarr/Lidarr.git
synced 2026-03-03 00:26:58 -05:00
Add option to disable scheduled tasks #4233
Labels
No labels
Area: API
Area: Database
Area: Db-migration
Area: Download Clients
Area: Extras
Area: Import Lists
Area: Indexer
Area: Metadata API
Area: Notifications
Area: Organizer
Area: Parser
Area: Scanning
Area: Tooling
Area: UI
Area: Unit Tests
Area: Update API
On Hold: MetadataAPI Blocking
Priority: High
Priority: Low
Priority: Medium
Status: Accepted
Status: Cannot Reproduce
Status: Confirmed
Status: Don't Merge
Status: Help Wanted
Status: In Progress
Status: Info Needed
Status: Investigating
Status: Logs Needed
Status: Maybe One Day
Status: Needs Triage
Status: On Hold
Status: Ready for Review
Status: Unlikely
Status: Waiting for OP
Status: Won't Fix
Type: Bug
Type: Documentation
Type: Duplicate
Type: Enhancement
Type: Enhancement
Type: External Bug
Type: Feature Request
Type: Regression
Type: Support
Type: Support.
conflict
conflict
no-conflict
not-pulled
radarr-pull
readarr-pull
sonarr upstream
sonarr-pull
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Lidarr-Lidarr#4233
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @omnibaer on GitHub (Jan 2, 2026).
Is there an existing issue for this?
Is your feature request related to a problem? Please describe
Currently, folder rescans occur daily, and for users working on importing large libraries, this can cause huge problems as Lidarr is unavailable for any work during this time (most database/file operations fail during a rescan).
Describe the solution you'd like
Please add checkboxes to System -> Tasks to allow users to disable scheduled tasks. This would help users with extremely large libraries to perform manual matching and updates without triggering large operations like folder rescans every time they update metadata etc.
Recommend a red health flag be set any time any scheduled task is disabled to remind the user to re-enable them.
Describe alternatives you've considered
I've attempted to change scheduled task intervals directly via database operations, but these do not appear to persist and are overwritten when Lidarr is restarted.
Anything else?
Nothing else. Thanks!
@mynameisbogdan commented on GitHub (Jan 3, 2026):
Just set
Rescan Artist Folder after RefreshtoAfter manual refreshwhich accomplishes the exact thing you want to do, but without disabling the metadata refreshes. But I recommendAfter manual refreshas disabling it fully would break the scan even if you manual refresh and scan them from the UI.You can disable
Watch Root Folders for file changestoo, if you want to go 100% manual.@azgnetov commented on GitHub (Jan 12, 2026):
Not working for me or Lidarr ignores this option. Try to edit DB with command
update ScheduledTasks set Interval=10080 where Id IN (5,6);@mynameisbogdan commented on GitHub (Jan 12, 2026):
It works just fine for me.