🛠 Fixes for GraphQL related schema changes

This commit is contained in:
2026-02-17 12:05:28 -05:00
parent 136a7f494f
commit cd446a9ca3
8 changed files with 894 additions and 195 deletions

View File

@@ -191,7 +191,9 @@ export default class JobQueueService extends Service {
};
} catch (error) {
console.error(
`An error occurred processing Job ID ${ctx.locals.job.id}`
`An error occurred processing Job ID ${ctx.locals.job.id}:`,
error instanceof Error ? error.message : error,
error instanceof Error ? error.stack : ""
);
throw new MoleculerError(
error,