From 4c9e40546b1f9ec16d0ef8f5d8497111dc6b765b Mon Sep 17 00:00:00 2001 From: necusjz Date: Mon, 18 Dec 2023 17:38:33 +0800 Subject: [PATCH] chore: support model from data-plane --- src/aaz_dev/command/api/_cmds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aaz_dev/command/api/_cmds.py b/src/aaz_dev/command/api/_cmds.py index 78dd6fdf..c529910e 100644 --- a/src/aaz_dev/command/api/_cmds.py +++ b/src/aaz_dev/command/api/_cmds.py @@ -251,7 +251,7 @@ def verify_command(file_path, node): for root, dirs, files in os.walk(aaz.resources_folder): for file in files: - if not file.endswith(".json"): + if not file.endswith(".json") or file.startswith("client"): # support data-plane continue file_path = os.path.join(root, file)