From 6bf92e0ea775de491859c50f53cd8066b930af25 Mon Sep 17 00:00:00 2001 From: wanyaoqi <18528551+wanyaoqi@users.noreply.github.com> Date: Mon, 29 Dec 2025 11:01:43 +0800 Subject: [PATCH] fix(climc): host set memory commit bound incorrect params (#23973) --- pkg/mcclient/options/compute/host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mcclient/options/compute/host.go b/pkg/mcclient/options/compute/host.go index b8f5469615..36eb89c297 100644 --- a/pkg/mcclient/options/compute/host.go +++ b/pkg/mcclient/options/compute/host.go @@ -138,7 +138,7 @@ func (o *HostAutoMigrateOnHostDownOptions) Params() (jsonutils.JSONObject, error type HostSetCommitBoundOptions struct { options.BaseIdOptions CpuCmtbound *float32 `help:"Cpu commit bound"` - MemCmtBound *float32 `help:"Mem commit bound"` + MemCmtbound *float32 `help:"Mem commit bound"` } func (o *HostSetCommitBoundOptions) Params() (jsonutils.JSONObject, error) {