Skip to content

Commit

Permalink
Merge pull request #189 from project-sunbird/profileVisibility
Browse files Browse the repository at this point in the history
Issues #SB-0000 fix: Unable to communicate to actor issue
  • Loading branch information
manzarul committed Oct 26, 2018
2 parents ba3d2a6 + 6396632 commit d9687f7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import akka.actor.ActorRef;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.sunbird.actorutil.InterServiceCommunication;
import org.sunbird.actorutil.InterServiceCommunicationFactory;
import org.sunbird.actorutil.systemsettings.SystemSettingClient;
Expand All @@ -22,7 +23,7 @@ public class SystemSettingClientImpl implements SystemSettingClient {
InterServiceCommunicationFactory.getInstance();
private static SystemSettingClientImpl systemSettingClient = null;
private static Map<String, SystemSetting> systemSettingsMap =
new HashMap<String, SystemSetting>();
new ConcurrentHashMap<String, SystemSetting>();

public static SystemSettingClientImpl getInstance() {
if (null == systemSettingClient) {
Expand Down

0 comments on commit d9687f7

Please sign in to comment.