1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

Adding clear old history on read, if there is nothing to do this should add very little work.

This commit is contained in:
mike12345567 2022-06-27 18:39:33 +01:00
parent 5100d86752
commit 55e744292d
2 changed files with 4 additions and 1 deletions

View file

@ -21,6 +21,7 @@ const {
const { events } = require("@budibase/backend-core")
const { app } = require("@budibase/backend-core/cache")
const { logs } = require("@budibase/pro")
const { clearOldHistory } = require("../../automations/logging")
const ACTION_DEFS = removeDeprecated(actions.ACTION_DEFINITIONS)
const TRIGGER_DEFS = removeDeprecated(triggers.TRIGGER_DEFINITIONS)
@ -195,6 +196,8 @@ exports.destroy = async function (ctx) {
exports.logSearch = async function (ctx) {
let { automationId, status, page, startDate } = ctx.request.body
// before querying logs, make sure old logs are cleared out
await clearOldHistory()
ctx.body = await logs.automations.getLogs(
startDate,
status,

View file

@ -32,7 +32,7 @@ function getStatus(results: AutomationResults) {
return status
}
async function clearOldHistory() {
export async function clearOldHistory() {
const db = getProdAppDB()
try {
const expired = await logs.automations.getExpiredLogs()