| | |
| | | ParentPlatform parentPlatform = null; |
| | | |
| | | Map<String, List<ParentPlatform>> parentPlatformMap = new HashMap<>(); |
| | | if (event.getPlatformId() != null) { |
| | | if (!StringUtils.isEmpty(event.getPlatformId())) { |
| | | parentPlatform = storager.queryParentPlatByServerGBId(event.getPlatformId()); |
| | | if (parentPlatform != null && !parentPlatform.isStatus()) { |
| | | return; |
| | |
| | | subscribe = subscribeHolder.getCatalogSubscribe(event.getPlatformId()); |
| | | |
| | | if (subscribe == null) { |
| | | logger.info("发送订阅消息时发现订阅信息已经不存在"); |
| | | logger.info("发送订阅消息时发现订阅信息已经不存在: {}", event.getPlatformId()); |
| | | return; |
| | | } |
| | | }else { |