From 1080c76e99f6753928e6d1654ccf77be27a2bfdb Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 26 Mar 2026 19:03:18 +0100 Subject: [PATCH] feat: wire attributes from RouteExecution/ProcessorExecution into storage Replaces null placeholders with actual getAttributes() calls now that cameleer3-common SNAPSHOT is resolved with attributes support. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../com/cameleer3/server/core/ingestion/IngestionService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cameleer3-server-core/src/main/java/com/cameleer3/server/core/ingestion/IngestionService.java b/cameleer3-server-core/src/main/java/com/cameleer3/server/core/ingestion/IngestionService.java index eda5df9f..23855a5d 100644 --- a/cameleer3-server-core/src/main/java/com/cameleer3/server/core/ingestion/IngestionService.java +++ b/cameleer3-server-core/src/main/java/com/cameleer3/server/core/ingestion/IngestionService.java @@ -107,7 +107,7 @@ public class IngestionService { diagramHash, exec.getEngineLevel(), inputBody, outputBody, inputHeaders, outputHeaders, - null // TODO: toJson(exec.getAttributes()) — awaiting cameleer3-common publish + toJson(exec.getAttributes()) ); } @@ -128,7 +128,7 @@ public class IngestionService { p.getErrorMessage(), p.getErrorStackTrace(), truncateBody(p.getInputBody()), truncateBody(p.getOutputBody()), toJson(p.getInputHeaders()), toJson(p.getOutputHeaders()), - null // TODO: toJson(p.getAttributes()) — awaiting cameleer3-common publish + toJson(p.getAttributes()) )); if (p.getChildren() != null) { flat.addAll(flattenProcessors(