fix: update ExecutionRecord constructor in stats test for new fields
All checks were successful
CI / build (push) Successful in 1m13s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Successful in 1m9s
CI / deploy (push) Successful in 38s
CI / deploy-feature (push) Has been skipped

This commit is contained in:
2026-03-24 17:26:07 +01:00
parent b8c316727e
commit 53e9073dca

View File

@@ -59,6 +59,7 @@ class PostgresStatsStoreIT extends AbstractPostgresIT {
executionStore.upsert(new ExecutionRecord(
id, routeId, "agent-1", applicationName, status, null, null,
startTime, startTime.plusMillis(durationMs), durationMs,
status.equals("FAILED") ? "error" : null, null, null));
status.equals("FAILED") ? "error" : null, null, null,
null, null, null, null, null));
}
}