瀏覽代碼

fix: document_create_args_validate (#8569)

Vikey Chen 7 月之前
父節點
當前提交
4f69adc8ab
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      api/services/dataset_service.py

+ 2 - 2
api/services/dataset_service.py

@@ -1100,8 +1100,8 @@ class DocumentService:
             DocumentService.data_source_args_validate(args)
             DocumentService.process_rule_args_validate(args)
         else:
-            if ("data_source" not in args and not args["data_source"]) and (
-                "process_rule" not in args and not args["process_rule"]
+            if ("data_source" not in args or not args["data_source"]) and (
+                "process_rule" not in args or not args["process_rule"]
             ):
                 raise ValueError("Data source or Process rule is required")
             else: