From 99fc8263323c03d559c13e553dfdeb5419625ed0 Mon Sep 17 00:00:00 2001 From: Fabio Date: Thu, 1 Feb 2024 17:02:49 -0300 Subject: [PATCH] =?UTF-8?q?mudand=C3=A7a=20da=20constante=20do=20cache=20f?= =?UTF-8?q?eat=20bug=20#AL-3714?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- .../controladores/seguridad/api/LimparCacheApiController.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1304513e5..871fad7a0 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores ventaboletosadm - 1.47.1 + 1.48.0 war diff --git a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/seguridad/api/LimparCacheApiController.java b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/seguridad/api/LimparCacheApiController.java index 09808fdbf..04fc262ee 100644 --- a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/seguridad/api/LimparCacheApiController.java +++ b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/seguridad/api/LimparCacheApiController.java @@ -150,7 +150,7 @@ public class LimparCacheApiController extends MyGenericForwardComposer { private String[] getURLSAPI() { ApplicationContext appContext = AppContext.getApplicationContext(); ConstanteService constanteService = (ConstanteService) appContext.getBean("constanteService"); - String constante = constanteService.buscarURLAPI(); + String constante = constanteService.buscarURLAPIEmb(); return constante == null ? null : constante.split("\\|"); }