|
|
@@ -299,8 +299,9 @@ public class TraineeBusiness {
|
|
|
*/
|
|
|
private void assignRoomToTrainee(YcTraineeBo bo) {
|
|
|
Long teamId = bo.getTeamId();
|
|
|
- log.info("[团队Id]-[{}]",teamId);
|
|
|
String key = CacheNames.CLASS_ROOM + "_" + teamId;
|
|
|
+ log.info("[团队Id]-[{}],[redisKey]-{}",teamId,key);
|
|
|
+ log.info("[redis]-{}",RedisUtils.getCacheObject(key).toString());
|
|
|
if (RedisUtils.getCacheObject(key) != null) {
|
|
|
LinkedBlockingQueue<String> concurrentLinkedQueue = RedisUtils.getCacheObject(key);
|
|
|
String roomCode = concurrentLinkedQueue.poll();
|