Skip to content
Snippets Groups Projects
Commit 465c780a authored by Hazelnoot's avatar Hazelnoot
Browse files

Revert "Synchronize server startup"

This reverts commit ffbdfa91.
parent d14f0b14
No related branches found
No related tags found
No related merge requests found
......@@ -19,18 +19,17 @@ export async function server() {
logger: new NestLogger(),
});
const serverService = app.get(ServerService);
await serverService.launch();
if (process.env.NODE_ENV !== 'test') {
await app.get(ChartManagementService).start();
app.get(ChartManagementService).start();
}
if (!envOption.noDaemons) {
await app.get(QueueStatsService).start();
await app.get(ServerStatsService).start();
app.get(QueueStatsService).start();
app.get(ServerStatsService).start();
}
// Start server last so the other services can register hooks first
const serverService = app.get(ServerService);
await serverService.launch();
return app;
}
......@@ -39,8 +38,8 @@ export async function jobQueue() {
logger: new NestLogger(),
});
await jobQueue.get(QueueProcessorService).start();
await jobQueue.get(ChartManagementService).start();
jobQueue.get(QueueProcessorService).start();
jobQueue.get(ChartManagementService).start();
return jobQueue;
}
......@@ -33,7 +33,7 @@ export class QueueStatsService implements OnApplicationShutdown {
* Report queue stats regularly
*/
@bindThis
public async start(): Promise<void> {
public start(): void {
const log = [] as any[];
ev.on('requestQueueStatsLog', x => {
......@@ -82,7 +82,7 @@ export class QueueStatsService implements OnApplicationShutdown {
activeInboxJobs = 0;
};
await tick();
tick();
this.intervalId = setInterval(tick, interval);
}
......
......@@ -68,7 +68,7 @@ export class ServerStatsService implements OnApplicationShutdown {
if (log.length > 200) log.pop();
};
await tick();
tick();
this.intervalId = setInterval(tick, interval);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment