Skip to content

Commit

Permalink
Loaders should not process exit
Browse files Browse the repository at this point in the history
  • Loading branch information
nullxone committed Oct 30, 2024
1 parent 7b65747 commit d5b60be
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion ndc-duckduckapi/src/services/gmail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ export class SyncManager {

process.on("SIGINT", async () => {
await this.cleanup();
process.exit(0);
});

return this.loaderState.state;
Expand Down
1 change: 0 additions & 1 deletion ndc-duckduckapi/src/services/google-calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ export class SyncManager {

process.on("SIGINT", async () => {
await this.cleanup();
process.exit(0);
});

return this.loaderState.state;
Expand Down

0 comments on commit d5b60be

Please sign in to comment.