trading-order-huobi/src/main/java/com.yami.trading.huobi/data/websocket/service/huobi/connection/HuobiWebSocketConnection.java
@@ -318,10 +318,17 @@ state = ConnectionStateEnum.CONNECTED; lastReceivedTime = System.currentTimeMillis(); // 不需要验签的话,直接把命令发出去就好 commandList.forEach(command -> { send(command); }); // 延迟1秒发送订阅命令,避免连接未稳定 new Thread(() -> { try { Thread.sleep(1000); // 1秒延迟 commandList.forEach(command -> { send(command); }); } catch (InterruptedException e) { Thread.currentThread().interrupt(); } }).start(); }