fix: Run Prettier

Signed-off-by: Michael Walsh <walshmichael310@gmail.com>
This commit is contained in:
Michael Walsh
2026-03-20 17:57:29 +01:00
parent 375b546fa1
commit 35f69e168c
@@ -142,12 +142,13 @@ export class DefaultCatalogProcessingEngine {
pollingIntervalMs: this.pollingIntervalMs,
loadTasks: async count => {
try {
const { items } =
await this.processingDatabase.transaction(async tx => {
const { items } = await this.processingDatabase.transaction(
async tx => {
return this.processingDatabase.getProcessableEntities(tx, {
processBatchSize: count,
});
});
},
);
return items;
} catch (error) {
this.logger.warn('Failed to load processing items', error);