diff --git a/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java b/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java index f2047c13f7296129ca65aa4e41d33366f28a3d47..d4b902c7e3b92565aee69bd332ae192862381867 100644 --- a/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java +++ b/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java @@ -108,9 +108,9 @@ public class NICGatewaySmsProvider implements ISmsProvider { if (JsonUtil.isStringNullOREmpty(password)) { password = PropertiesCache.getInstance().getProperty("nic_sms_gateway_provider_password"); } - dltEntityId = System.getenv("diksha_dlt_entity_id"); + dltEntityId = System.getenv("dlt_entity_id"); if (JsonUtil.isStringNullOREmpty(dltEntityId)) { - dltEntityId = PropertiesCache.getInstance().getProperty("diksha_dlt_entity_id"); + dltEntityId = PropertiesCache.getInstance().getProperty("dlt_entity_id"); } return validateSettings(); }