소스 검색

chore(dev-server): Add return to bootstrap

Michael Bromley 1 년 전
부모
커밋
a28befb35f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)
     .then(app => {
         if (process.env.RUN_JOB_QUEUE === '1') {
-            app.get(JobQueueService).start();
+            return app.get(JobQueueService).start();
         }
     })
     .catch(err => {