|
@@ -285,10 +285,10 @@ public class LiveRoomServiceImpl implements LiveRoomService {
|
|
|
}
|
|
|
|
|
|
public String getRoomSessionId(String roomId) {
|
|
|
- // RBucket<String> bucket = redissonClient.getBucket("sessionId:" + roomId);
|
|
|
- // if (bucket.isExists()) {
|
|
|
- // return bucket.get();
|
|
|
- // }
|
|
|
+ RBucket<String> bucket = redissonClient.getBucket("sessionId:" + roomId);
|
|
|
+ if (bucket.isExists()) {
|
|
|
+ // return bucket.get();
|
|
|
+ }
|
|
|
HttpURLConnection conn;
|
|
|
JSONObject resultObject;
|
|
|
|