|
@@ -71,11 +71,11 @@ public class TIeInvigilateCallOeController {
|
|
|
throw new BusinessException("观看地址不能为空");
|
|
|
}
|
|
|
String liveUrl = String.valueOf(mapParameter.get("liveUrl"));
|
|
|
- TIeExamInvigilateCallLog tIeExamInvigilateCallLog = new TIeExamInvigilateCallLog(recordId, source, liveUrl, MonitorStatusSourceEnum.INIT);
|
|
|
+ TIeExamInvigilateCallLog tIeExamInvigilateCallLog = new TIeExamInvigilateCallLog(recordId, source, liveUrl);
|
|
|
//获取考试记录缓存
|
|
|
Map<String, Object> objectMap = redisUtil.getHashEntries(RedisKeyHelper.examRecordCacheKey(recordId));
|
|
|
objectMap.put(SystemConstant.MONITOR_LIVE_URL_ + source.name(), liveUrl);
|
|
|
- objectMap.put(SystemConstant.MONITOR_STATUS_ + source.name(), tIeExamInvigilateCallLog.getStatus().name());
|
|
|
+// objectMap.put(SystemConstant.MONITOR_STATUS_ + source.name(), tIeExamInvigilateCallLog.getStatus().name());
|
|
|
redisUtil.setForHash(RedisKeyHelper.examRecordCacheKey(recordId), objectMap);
|
|
|
|
|
|
//监考监控通话信息 发送mq start
|