Update ProfileWorker interval in appsettings.json

Increased the `IntervalMS` value in the `ProfileWorker` section of `appsettings.json` from 1000ms (1 second) to 60000ms (60 seconds). This change reduces the execution frequency of the `ProfileWorker` process, likely to optimize performance or reduce resource usage.
This commit is contained in:
2026-07-13 13:25:57 +02:00
parent 511fb159c4
commit 84b95c53e4

View File

@@ -22,6 +22,6 @@
"LogDirectory": "E:\\LogFiles\\Digital Data\\ECMJobRunner.WebCron"
},
"ProfileWorker": {
"IntervalMS": 1000
"IntervalMS": 60000
}
}