1
0
Эх сурвалжийг харах

chore(dev-server): Add return to bootstrap

Michael Bromley 1 жил өмнө
parent
commit
a28befb35f

+ 1 - 1
packages/dev-server/index.ts

@@ -8,7 +8,7 @@ import { devConfig } from './dev-config';
 bootstrap(devConfig)
     .then(app => {
         if (process.env.RUN_JOB_QUEUE === '1') {
-            app.get(JobQueueService).start();
+            return app.get(JobQueueService).start();
         }
     })
     .catch(err => {