fix(db): fix mis-ordered db cleanup step

It was happening before pruning queue items - should happen afterwards, else you have to restart the app again to free disk space made available by the pruning.
This commit is contained in:
psychedelicious 2023-12-02 21:40:01 +11:00
parent 6d7b4b8e8a
commit 929b1f4a41

View File

@ -124,8 +124,8 @@ class ApiDependencies:
create_system_graphs(services.graph_library)
db.clean()
ApiDependencies.invoker = Invoker(services)
db.clean()
@staticmethod
def shutdown():