From ed2804c098693248342972762cf7d50f04422489 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Mon, 15 Sep 2025 10:26:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=89=B9=E6=AC=A1=E7=9A=84DAG=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=8F=AA=E8=8E=B7=E5=8F=96=E7=9B=B4=E6=8E=A5=E7=9A=84?= =?UTF-8?q?=E4=B8=8A=E4=B8=8B=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/wpm/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wpm/views.py b/apps/wpm/views.py index 4a16fe9d..55b951f0 100644 --- a/apps/wpm/views.py +++ b/apps/wpm/views.py @@ -1144,7 +1144,7 @@ class BatchLogViewSet(CustomListModelMixin, CustomGenericViewSet): 获取该批次的DAG图数据 """ batch = request.data.get("batch", None) - method = request.data.get("method", "full") + method = request.data.get("method", "direct") if not batch: raise ParseError("缺少batch参数") return Response(get_batch_dag(batch, method))