From ead101470957bbcc083ce4bc35f028d9a1117bf1 Mon Sep 17 00:00:00 2001 From: Walter Caffiero Date: Fri, 11 Jul 2025 11:16:13 +0200 Subject: [PATCH] ESB-669 fix pipelined reload configuration Fixes but introduced by ENG-5542 --- pom.xml | 2 +- .../aps/system/services/cache/IFCacheWithPipeline.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 1b455d61a..a7f346d69 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.entando.entando entando-engine jar - 6.5.4 + 6.5.4-fix.1 Entando Core: Engine Entando Engine: an agile, modern and user-centric open source Portal platform. http://www.entando.com/ diff --git a/src/main/java/org/entando/entando/aps/system/services/cache/IFCacheWithPipeline.java b/src/main/java/org/entando/entando/aps/system/services/cache/IFCacheWithPipeline.java index 66fe2d5f4..0ff69a6e9 100644 --- a/src/main/java/org/entando/entando/aps/system/services/cache/IFCacheWithPipeline.java +++ b/src/main/java/org/entando/entando/aps/system/services/cache/IFCacheWithPipeline.java @@ -52,10 +52,10 @@ static void pipelined(Object cache, Consumer pipelinedBlock openPipeline(cache); pipelinedBlock.accept((IFCacheWithPipeline) cache); closePipeline(cache); + return; } - } else { - pipelinedBlock.accept(null); } + pipelinedBlock.accept(null); } default boolean isEnabled() {