We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f2f42 commit 7bea146Copy full SHA for 7bea146
dbm-ui/backend/db_services/dbbase/resources/query.py
@@ -855,8 +855,8 @@ def _list_machines(
855
"bk_agent_id": Q(bk_agent_id=query_params.get("bk_agent_id")),
856
"cluster_type": Q(cluster_type=query_params.get("cluster_type")),
857
"instance_role": (
858
- Q(storageinstance__instance_role=query_params.get("instance_role", "").split(","))
859
- | Q(proxyinstance__access_layer=query_params.get("instance_role", "").split(","))
+ Q(storageinstance__instance_role__in=query_params.get("instance_role", "").split(","))
+ | Q(proxyinstance__access_layer__in=query_params.get("instance_role", "").split(","))
860
),
861
"instance_status": (
862
Q(storageinstance__status=query_params.get("instance_status"))
0 commit comments