Merge branch 'manually-import-job-description' of https://github.com/DaKheera47/job-ops into manually-import-job-description

This commit is contained in:
DaKheera47 2026-01-19 19:38:18 +00:00
commit 9ee5f87624

View File

@ -851,7 +851,9 @@ apiRouter.post('/manual-jobs/import', async (req: Request, res: Response) => {
} catch (error) {
console.warn('Manual job scoring failed:', error);
}
})();
})().catch((error) => {
console.warn('Manual job scoring task failed to start:', error);
});
res.json({ success: true, data: createdJob });
} catch (error) {