Browse Source

恒轮端口配置

lxb 1 year ago
parent
commit
51a05794c0

+ 4 - 0
imcs-admin-boot/imcs-business-biz/src/main/java/com/github/zuihou/business/edgeLibrary/service/impl/StorgeServiceImpl.java

@@ -693,6 +693,10 @@ public class StorgeServiceImpl extends SuperCacheServiceImpl<StorgeMapper, Storg
         jsonParam.put("port", hellerMap.get("port"));
         jsonParam.put("taskId",taskNode.getTaskId() + "");
         jsonParam.put("taskNodeId",taskNode.getId() + "");
+        Map<String,String> data = new HashMap<>();
+        data.put("url", hellerMap.get("url"));
+        data.put("port", hellerMap.get("port"));
+        jsonParam.put("data",data);
 
         logger.warn("调用【恒轮调试空闲接口】地址{}", instructionUrl);
         logger.warn("调用【恒轮调试空闲接口】传参{}", jsonParam.toJSONString());

+ 1 - 1
imcs-admin-boot/imcs-common/src/main/java/com/github/zuihou/common/constant/DictionaryKey.java

@@ -214,7 +214,7 @@ public interface DictionaryKey {
     Map<String, Map<String, String>> RESOURCE_NET = new HashMap<String, Map<String, String>>(){
         {
             // 云箭配置
-            put("heller", new HashMap<String,String>(){{put("url", "192.168.11.164");put("port", "4048");}});
+            put("heller", new HashMap<String,String>(){{put("url", "192.168.11.164");put("port", "4840");}});
         }
     };