fix: revert LogEntry to 7-arg constructor (source is not a ctor param)
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m11s
CI / deploy (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled
CI / docker (push) Has been cancelled

LogEntry.getSource() exists but source is not a constructor parameter
in cameleer3-common — it uses a default value.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-12 10:40:48 +02:00
parent 00115a16ac
commit 0603e62a69

View File

@@ -49,7 +49,7 @@ class ClickHouseLogStoreIT {
private LogEntry entry(Instant ts, String level, String logger, String message, private LogEntry entry(Instant ts, String level, String logger, String message,
String thread, String stackTrace, Map<String, String> mdc) { String thread, String stackTrace, Map<String, String> mdc) {
return new LogEntry(ts, level, logger, message, thread, stackTrace, mdc, "app"); return new LogEntry(ts, level, logger, message, thread, stackTrace, mdc);
} }
private LogSearchRequest req(String application) { private LogSearchRequest req(String application) {