Browse Source

Use the new exec function in Request and Seeker

dev
David Ludwig 4 years ago
parent
commit
0722e99dc0
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      services/request/src/server/index.ts
  2. +1
    -1
      services/seeker/src/index.ts

+ 1
- 1
services/request/src/server/index.ts View File

@ -14,4 +14,4 @@ let app = new Application(appKey);
/**
* Start the application
*/
app.exec();
app.exec().then(process.exit);

+ 1
- 1
services/seeker/src/index.ts View File

@ -4,4 +4,4 @@ import Application from "./Application";
let app = new Application();
// Start the application
app.exec();
app.exec().then(process.exit);

Loading…
Cancel
Save