Skip to content
Snippets Groups Projects
Commit be9933b6 authored by felmer's avatar felmer
Browse files

LMS-2818 Do not subpress config exception

SVN: 24615
parent 7bc51951
No related branches found
No related tags found
No related merge requests found
...@@ -420,14 +420,7 @@ public class DataStoreServer ...@@ -420,14 +420,7 @@ public class DataStoreServer
{ {
if (configParameters == null) if (configParameters == null)
{ {
Properties properties; Properties properties = DssPropertyParametersUtil.loadServiceProperties();
try
{
properties = DssPropertyParametersUtil.loadServiceProperties();
} catch (ConfigurationFailureException ex)
{
properties = new Properties();
}
final Properties systemProperties = System.getProperties(); final Properties systemProperties = System.getProperties();
final Enumeration<?> propertyNames = systemProperties.propertyNames(); final Enumeration<?> propertyNames = systemProperties.propertyNames();
while (propertyNames.hasMoreElements()) while (propertyNames.hasMoreElements())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment