From 0a4bd281de02eb20fa053ce58585eec536fc8639 Mon Sep 17 00:00:00 2001 From: ioito Date: Thu, 24 Sep 2020 15:31:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BB=85=E5=9C=A8=E5=8F=AF=E7=94=A8?= =?UTF-8?q?=E5=8C=BA=E6=95=85=E9=9A=9C=E6=97=B6=E5=8F=AF=E5=BC=BA=E5=88=B6?= =?UTF-8?q?=E6=8C=82=E8=BD=BD=E7=A3=81=E7=9B=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/multicloud/google/instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/multicloud/google/instance.go b/pkg/multicloud/google/instance.go index 2d12571ab2..bd7162c929 100644 --- a/pkg/multicloud/google/instance.go +++ b/pkg/multicloud/google/instance.go @@ -783,7 +783,7 @@ func (region *SRegion) AttachDisk(instanceId, diskId string, boot bool) error { if boot { body["autoDelete"] = true } - params := map[string]string{"forceAttach": "true"} + params := map[string]string{} return region.Do(instanceId, "attachDisk", params, jsonutils.Marshal(body)) }