🛠 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,

View File

@@ -174,8 +174,13 @@ export default class ImportService extends Service {
try {
// Get params to be passed to the import jobs
const { sessionId } = ctx.params;
const resolvedPath = path.resolve(COMICS_DIRECTORY);
console.log(`Walking comics directory: ${resolvedPath}`);
// 1. Walk the Source folder
klaw(path.resolve(COMICS_DIRECTORY))
klaw(resolvedPath)
.on("error", (err) => {
console.error(`Error walking directory ${resolvedPath}:`, err);
})
// 1.1 Filter on .cb* extensions
.pipe(
through2.obj(function (item, enc, next) {