Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* "Portions Copyrighted [year] [name of copyright owner]"
*
* Portions Copyrighted 2012-2016 ForgeRock AS.
* Portions Copyrighted 2017-2026 3A Systemc, LLC
*/

package com.sun.identity.common.configuration;
Expand Down Expand Up @@ -145,8 +146,10 @@ public void globalConfigChanged(String serviceName, String version, String group
SSOToken adminToken = AccessController.doPrivileged(AdminTokenAction.getInstance());
try {
Properties newProp = ServerConfiguration.getServerInstance(adminToken, serverName);
SystemProperties.initializeProperties(newProp, true, true);
notifies(Constants.SVC_NAME_PLATFORM);
if (newProp!=null) {
SystemProperties.initializeProperties(newProp, true, true);
notifies(Constants.SVC_NAME_PLATFORM);
}
} catch (SSOException | IOException | SMSException ex) {
// ignored
}
Expand Down