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))