refactor: start task dispatcher after server initialization

This commit is contained in:
MayaTheShy
2026-03-22 11:42:52 -04:00
parent 88163be0dd
commit 9984dc0760

View File

@@ -1954,4 +1954,6 @@ server.listen(PORT, () => {
if (INVENTORY_SERVER_URL) {
console.log(`📦 Inventory server integration: ${INVENTORY_SERVER_URL}`);
}
// Start task dispatcher after server is ready
taskDispatcher.start();
});