Fix Bug #19210 Social Service Write message on RootVO in preprod

This commit is contained in:
Massimiliano Assante 2020-05-05 16:16:03 +02:00
parent bc87a841d7
commit d62a42f399
2 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@
<dependent-module archiveName="social-util-library-1.7.2.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/social-util-library/social-util-library">
<dependency-type>uses</dependency-type>
</dependent-module>
<dependent-module archiveName="usermanagement-core-2.5.0.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/usermanagement-core/usermanagement-core">
<dependency-type>uses</dependency-type>
</dependent-module>
<dependent-module archiveName="aslsocial-1.7.3.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/aslsocial/aslsocial">
<dependency-type>uses</dependency-type>
</dependent-module>

View File

@ -209,7 +209,7 @@ public class SocialNetworkingSiteFinder {
}
private static boolean isDevOrPreprod(String rootContext) {
return rootContext.equals("/gcube");
return (rootContext.equals("/gcube") || rootContext.equals("/pred4s"));
}
/**