-
Type:
Regression Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: 7.1.X, 7.2.X, Master
-
Fix Version/s: 7.0.0 DXP FP88, 7.0.10.13 DXP SP13, 7.0.X, 7.1.10 DXP FP15, 7.1.X, 7.2.10 DXP FP3, 7.2.1 CE GA2, 7.2.X, 7.3.10 DXP GA1, Master
-
Component/s: Portal Configuration
-
Branch Version/s:7.2.x, 7.1.x, 7.0.x
-
Backported to Branch:Committed
-
Fix Priority:4
-
Git Pull Request:
Steps to reproduce:
0. Install dxp-13 fix pack.
1. Add, for example, the following line to your portal-ext:
partnerstamm-api-user = his_user
2. Start the bundle and run the attached groovy script (it contains 3 ways I tried of retrieving a property's value).
Result:
com.liferay.portal.util.PropsUtil: his_user
com.liferay.portal.kernel.util.PropsUtil: his_user
ConfigurationFactoryUtil: his_user
Expected:
com.liferay.portal.util.PropsUtil:his_user
com.liferay.portal.kernel.util.PropsUtil:his_user
ConfigurationFactoryUtil:his_user
7.1.x: reproduced
Master: the result is
com.liferay.portal.util.PropsUtil:null
com.liferay.portal.kernel.util.PropsUtil:null
ConfigurationFactoryUtil:null
- is caused by
-
LPS-94307 Patch commons-configuration to remove unnecessary separators support, we only need '='
- Closed