fixed log levels

This commit is contained in:
Boki 2025-06-20 23:46:37 -04:00
parent 01e0fab0df
commit 8edd78a341
3 changed files with 33 additions and 30 deletions

View file

@ -157,7 +157,7 @@ async function initializeServices() {
const jobData = {
handler: handlerName,
operation: scheduledJob.operation,
...(scheduledJob.payload || {}),
payload: scheduledJob.payload || {},
};
// Build job options from scheduled job config

View file

@ -70,9 +70,15 @@ export function initializeQMProvider() {
{
type: 'qm-maintnance',
operation: 'spider-symbol-search',
payload: {
prefix: null,
depth: 1,
source: 'qm',
maxDepth: 4
},
cronPattern: '0 0 * * 0', // Every Sunday at midnight
priority: 10,
immediately: true, // Don't run on startup
immediately: true, // Don't run on startup - this is a heavy operation
description: 'Comprehensive symbol search using QM API',
},
],