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:
parent
0f2e3d7c99
commit
8d59c424d7
|
@ -61,8 +61,8 @@ SERVER_COMPONENTS = ['application', 'websockets', 'klippy_connection']
|
||||||
CORE_COMPONENTS = [
|
CORE_COMPONENTS = [
|
||||||
'dbus_manager', 'database', 'file_manager', 'authorization',
|
'dbus_manager', 'database', 'file_manager', 'authorization',
|
||||||
'klippy_apis', 'machine', 'data_store', 'shell_command',
|
'klippy_apis', 'machine', 'data_store', 'shell_command',
|
||||||
'proc_stats', 'job_state', 'job_queue', 'http_client',
|
'proc_stats', 'job_state', 'job_queue', 'history',
|
||||||
'announcements', 'webcam', 'extensions'
|
'http_client', 'announcements', 'webcam', 'extensions'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue