Skip to content

Commit 15ecbb5

Browse files
authored
Change the value for meeting link and enable the grievance scheduler (#233)
1 parent 327321c commit 15ecbb5

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/main/environment/common_ci.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ springdoc.swagger-ui.enabled=false
170170
isProduction=@env.IS_PRODUCTION@
171171
grievanceAllocationRetryConfiguration=3
172172

173-
start-grievancedatasync-scheduler=false
173+
start-grievancedatasync-scheduler=true
174174
cron-scheduler-grievancedatasync=0 0/2 * * * ?
175175

176176
captcha.secret-key=@env.CAPTCHA_SECRET_KEY@

src/main/java/com/iemr/common/service/videocall/VideoCallServiceImpl.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import com.iemr.common.utils.config.ConfigProperties;
2222
import com.iemr.common.utils.mapper.OutputMapper;
2323
import com.iemr.common.utils.response.OutputResponse;
24+
import org.springframework.beans.factory.annotation.Value;
2425

2526
@Service
2627
public class VideoCallServiceImpl implements VideoCallService {
@@ -32,14 +33,15 @@ public class VideoCallServiceImpl implements VideoCallService {
3233
@Autowired
3334
private VideoCallMapper videoCallMapper;
3435

36+
@Value("${video-call-url}")
3537
private String meetingLink;
38+
3639
private boolean isLinkSent = false;
3740
private String consultationStatus = "Not Initiated";
3841
private String jitsiLink;
39-
4042
public VideoCallServiceImpl() {
41-
this.jitsiLink = ConfigProperties.getPropertyByName("video-call-url");
42-
logger.info("Jitsi Link fetched: " + this.jitsiLink);
43+
// this.jitsiLink = ConfigProperties.getPropertyByName("video-call-url");
44+
// logger.info("Jitsi Link fetched: " + this.jitsiLink);
4345
}
4446

4547
@Override

0 commit comments

Comments
 (0)