fix: 调试

This commit is contained in:
stream 2026-01-04 18:18:01 +08:00
parent f19aaea613
commit f3a4648858

View File

@ -198,7 +198,13 @@ public class FlowiseActionService {
return "驾驶模式已切换为舒适模式";
case HELLO:
HttpUtil.post("http://192.168.0.102:8000/action/hello", "");
executor.submit(() -> {
try {
HttpUtil.post("http://192.168.0.102:8000/action/hello", "");
} catch (Exception e) {
throw new GlobalException("打招呼失败: ", e.getMessage());
}
});
log.info("打招呼");
return "打招呼";