From a50cd2b578a342cb5b9d510a20e8f4819d5f614c Mon Sep 17 00:00:00 2001 From: aauroy Date: Tue, 13 Aug 2024 16:21:29 +0200 Subject: [PATCH] (configuration): setup the memcached.directory.timeToLiveSeconds property when MEMCACHED_HOST is defined --- configuration.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/configuration.sh b/configuration.sh index 1fdc9e1..e39eea8 100755 --- a/configuration.sh +++ b/configuration.sh @@ -148,6 +148,7 @@ create_memcached_properties(){ cat <<-EOF > ${WEBAPPS_DIR}/ROOT/WEB-INF/classes/dal/memcached.properties memcached.endpoints[0]=$MEMCACHED_HOST memcached.timeToLiveSeconds=120 +memcached.directory.timeToLiveSeconds=86400 EOF }