Ver Fonte

chore(dev-server): Add return to bootstrap

Michael Bromley há 1 ano atrás
pai
commit
a28befb35f
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      packages/dev-server/index.ts

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

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