Commit 2fddcc3c by 罗长华

Merge remote-tracking branch 'origin/feature-cluster' into feature-cluster

parents e77dd4d2 ed3e5aa0
...@@ -72,7 +72,6 @@ public class MultiMeetServiceImpl implements MultiMeetService { ...@@ -72,7 +72,6 @@ public class MultiMeetServiceImpl implements MultiMeetService {
boolean onlineStatus = userStateCacheManager.isOnline(currentClient.getId()); boolean onlineStatus = userStateCacheManager.isOnline(currentClient.getId());
if (!onlineStatus) { if (!onlineStatus) {
log.info("发起方必须在线" + currentClient.getFkAppid() + currentClient.getClientId()); log.info("发起方必须在线" + currentClient.getFkAppid() + currentClient.getClientId());
throw new BusinessException("发起方必须在线");
} }
List<RoomMemberDto> members = Lists.newArrayList(); List<RoomMemberDto> members = Lists.newArrayList();
ImMultiRtcRoom rtcRoom = imMultiRtcRoomService.getCachedMultiRtcRoom(currentClient.getFkAppid(), param.getRoomId()); ImMultiRtcRoom rtcRoom = imMultiRtcRoomService.getCachedMultiRtcRoom(currentClient.getFkAppid(), param.getRoomId());
......
...@@ -50,9 +50,9 @@ import com.google.common.collect.Lists; ...@@ -50,9 +50,9 @@ import com.google.common.collect.Lists;
* @Date 2021年01月20日 04:21:30 * @Date 2021年01月20日 04:21:30
* @Version 1.0 * @Version 1.0
*/ */
@Order(2) //@Order(2)
@Aspect //@Aspect
@Component //@Component
@Slf4j @Slf4j
public class ControllerValidatorAspect implements InitializingBean { public class ControllerValidatorAspect implements InitializingBean {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment