Showing
1 changed file
with
3 additions
and
3 deletions
@@ -262,20 +262,20 @@ public class RabbitmqService { | @@ -262,20 +262,20 @@ public class RabbitmqService { | ||
262 | } | 262 | } |
263 | } | 263 | } |
264 | } | 264 | } |
265 | - | 265 | + |
266 | return new BaseResponse(); | 266 | return new BaseResponse(); |
267 | } | 267 | } |
268 | 268 | ||
269 | public List<Integer> querySlaves(int moId) { | 269 | public List<Integer> querySlaves(int moId) { |
270 | 270 | ||
271 | - DEBUG.info("query all slaves about moId {} ", moId); | ||
272 | - | ||
273 | List<Integer> slaveList = new ArrayList<>(); | 271 | List<Integer> slaveList = new ArrayList<>(); |
274 | 272 | ||
275 | MObjectInfo mObjectInfo = moService.queryMObjectInfo(moId); | 273 | MObjectInfo mObjectInfo = moService.queryMObjectInfo(moId); |
276 | 274 | ||
277 | String tags = mObjectInfo.getMoTags(); | 275 | String tags = mObjectInfo.getMoTags(); |
278 | 276 | ||
277 | + DEBUG.info("query all slaves about moId {} tags {}", moId, tags); | ||
278 | + | ||
279 | if (StringUtils.isNotBlank(tags)) { | 279 | if (StringUtils.isNotBlank(tags)) { |
280 | 280 | ||
281 | String[] tagArray = StringUtils.split(","); | 281 | String[] tagArray = StringUtils.split(","); |
-
Please register or login to post a comment