server: convert history a core component

The history component requires no specific configuration, is
generally always used, and has no dependencies that prevent
loading at startup.  Convert history to a core component,
making it eligible for lookup/use in optional components.

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-11-06 07:40:01 -05:00
parent 0f2e3d7c99
commit 8d59c424d7
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ SERVER_COMPONENTS = ['application', 'websockets', 'klippy_connection']
CORE_COMPONENTS = [
'dbus_manager', 'database', 'file_manager', 'authorization',
'klippy_apis', 'machine', 'data_store', 'shell_command',
'proc_stats', 'job_state', 'job_queue', 'http_client',
'announcements', 'webcam', 'extensions'
'proc_stats', 'job_state', 'job_queue', 'history',
'http_client', 'announcements', 'webcam', 'extensions'
]