moonraker: add job queue to core components

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2021-09-29 19:50:33 -04:00 committed by Eric Callahan
parent 0f1aea8df8
commit b135f48867
1 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,9 @@ MAX_LOG_ATTEMPTS = 10 * LOG_ATTEMPT_INTERVAL
CORE_COMPONENTS = [
'database', 'file_manager', 'klippy_apis', 'machine',
'data_store', 'shell_command', 'proc_stats', 'job_state']
'data_store', 'shell_command', 'proc_stats', 'job_state',
'job_queue'
]
SENTINEL = SentinelClass.get_instance()