Authored by jack

log

... ... @@ -262,20 +262,20 @@ public class RabbitmqService {
}
}
}
return new BaseResponse();
}
public List<Integer> querySlaves(int moId) {
DEBUG.info("query all slaves about moId {} ", moId);
List<Integer> slaveList = new ArrayList<>();
MObjectInfo mObjectInfo = moService.queryMObjectInfo(moId);
String tags = mObjectInfo.getMoTags();
DEBUG.info("query all slaves about moId {} tags {}", moId, tags);
if (StringUtils.isNotBlank(tags)) {
String[] tagArray = StringUtils.split(",");
... ...