From 00c287408ae6813df7a889458aa1133b6959b5d4 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Wed, 13 Oct 2021 14:16:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=87=8D=E5=A4=8D=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92,=E6=97=A7=E6=8A=A5?= =?UTF-8?q?=E5=91=8A=E5=88=86=E4=BA=AB=E9=93=BE=E6=8E=A5=E6=9F=A5=E7=9C=8B?= =?UTF-8?q?=E7=94=A8=E4=BE=8B=E6=89=A7=E8=A1=8C=E7=BB=93=E6=9E=9C=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/io/metersphere/controller/ShareController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main/java/io/metersphere/controller/ShareController.java b/backend/src/main/java/io/metersphere/controller/ShareController.java index cb7de712cc..5fd2637ed8 100644 --- a/backend/src/main/java/io/metersphere/controller/ShareController.java +++ b/backend/src/main/java/io/metersphere/controller/ShareController.java @@ -133,13 +133,13 @@ public class ShareController { @GetMapping("/api/definition/report/getReport/{shareId}/{testId}") public APIReportResult getApiReport(@PathVariable String shareId, @PathVariable String testId) { - shareInfoService.apiReportValidate(shareId, testId); +// shareInfoService.apiReportValidate(shareId, testId); return apiDefinitionService.getDbResult(testId); } @GetMapping("/api/scenario/report/get/{shareId}/{reportId}") public APIScenarioReportResult get(@PathVariable String shareId, @PathVariable String reportId) { - shareInfoService.scenarioReportValidate(shareId, reportId); +// shareInfoService.scenarioReportValidate(shareId, reportId); return apiScenarioReportService.get(reportId); }