You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to use the Standalone Tomcat Redis Plugin with this plugin, it was discovered that the script in this plugin was removing a .jar file required by the Redis plugin. Please change the BuildStandalone.groovy script in the current and in the 1.2.3 versions so that it ignores the tomcat-redis-session .jar file:
Change:
if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool'].any { file.name.contains it }) {
To:
if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool', 'redis-session'].any { file.name.contains it }) {
The text was updated successfully, but these errors were encountered:
While trying to use the Standalone Tomcat Redis Plugin with this plugin, it was discovered that the script in this plugin was removing a .jar file required by the Redis plugin. Please change the BuildStandalone.groovy script in the current and in the 1.2.3 versions so that it ignores the tomcat-redis-session .jar file:
Change:
if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool'].any { file.name.contains it }) {
To:
if (file.name.startsWith('tomcat-') && !['embed-logging', 'jdbc', 'pool', 'redis-session'].any { file.name.contains it }) {
The text was updated successfully, but these errors were encountered: