diff --git a/src/cli/ImportFeedCommand.ts b/src/cli/ImportFeedCommand.ts index 7cb5c97d..015e0e7d 100644 --- a/src/cli/ImportFeedCommand.ts +++ b/src/cli/ImportFeedCommand.ts @@ -36,12 +36,7 @@ export class ImportFeedCommand implements CLICommand { * Do the import and then shut down the connection pool */ public async run(argv: string[]): Promise { - try { - await this.doImport(argv[3]); - } - catch (err) { - console.error(err); - } + await this.doImport(argv[3]); return this.end(); }