From 68311e1d8bdd6a8587e0f7b0f2915ffe529c6f89 Mon Sep 17 00:00:00 2001 From: xupei Date: Mon, 30 Jun 2025 13:13:58 +0800 Subject: [PATCH] =?UTF-8?q?TASK:=20=E9=80=9A=E8=BF=87=E5=AF=B9=E8=AF=9D?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E9=A1=B9=E7=9B=AE=20=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/ai/da/python/PythonService.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/ai/da/python/PythonService.java b/src/main/java/com/ai/da/python/PythonService.java index 0056da65..83a0fcca 100644 --- a/src/main/java/com/ai/da/python/PythonService.java +++ b/src/main/java/com/ai/da/python/PythonService.java @@ -4416,9 +4416,11 @@ public class PythonService { content.put("file_list", !StringUtils.isEmpty(fileUrl) ? Collections.singletonList(fileUrl) : new ArrayList<>()); RequestBody body = RequestBody.create(mediaType, JSON.toJSONString(content)); - log.info("getProjectParam 请求地址: {}", accessPythonIp + ":" + accessPythonPort + "/api/extraction_project_info"); +// log.info("getProjectParam 请求地址: {}", accessPythonIp + ":" + accessPythonPort + "/api/extraction_project_info"); + log.info("getProjectParam 请求地址: {}", "http://18.167.251.121:2011/api/extraction_project_info"); Request request = new Request.Builder() - .url(accessPythonIp + ":" + accessPythonPort + "/api/extraction_project_info") +// .url(accessPythonIp + ":" + accessPythonPort + "/api/extraction_project_info") + .url("http://18.167.251.121:2011/api/extraction_project_info") .method("POST", body) .addHeader("Content-Type", "application/json") .build();