Skip to content

Commit

Permalink
Fix for hard-coded 'no-cache' in MSK docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Aug 27, 2021
1 parent 8447169 commit aa0229f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions portal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
<warName>${final.war.name}</warName>
<webappDirectory>${project.build.directory}/portal</webappDirectory>
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
<escapeString>\</escapeString>
<webResources>
<resource>
<directory>${project.parent.basedir}/persistence/persistence-connections/src/main/resources</directory>
Expand Down
6 changes: 3 additions & 3 deletions portal/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
<!-- dbcp profile is defined here to prevent exceptions during war deployment -->
<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>${dbconnector:dbcp},${authenticate},${google.analytics.tracking:ga-api-tracking-disabled}</param-value>
<param-value>\${dbconnector:dbcp},\${authenticate},\${google.analytics.tracking:ga-api-tracking-disabled}</param-value>
</context-param>
<context-param>
<param-name>spring.liveBeansView.mbeanDomain</param-name>
<param-value>${dbconnector:dbcp},${authenticate}</param-value>
<param-value>\${dbconnector:dbcp},\${authenticate}</param-value>
</context-param>

<context-param>
Expand All @@ -38,7 +38,7 @@

<context-param>
<param-name>webAppRootKey</param-name>
<param-value>${app.name}.${timestamp}</param-value>
<param-value>\${app.name}.${timestamp}</param-value>
</context-param>

<context-param>
Expand Down

0 comments on commit aa0229f

Please sign in to comment.