Authored by qinchao

增加push的redis查询入口

... ... @@ -70,6 +70,14 @@ public class RedisOperateServiceImpl implements RedisOperateService {
tmp_map.put("port",""+6379);
infos.add(tmp_map);
map.put("QCLOUD-gateway",infos);
infos= new ArrayList<>();
tmp_map=new HashMap<>();
//tmp_map.put("id","QCLOUD");
tmp_map.put("ip","10.66.5.182");
tmp_map.put("port",""+6379);
infos.add(tmp_map);
map.put("QCLOUD-push",infos);
}
return map;
}
... ...