Skip to content

Commit 5ab6445

Browse files
committed
Remove temp variable for evc mode
1 parent 8a52411 commit 5ab6445

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/dcloud/resource_vm.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,7 @@ func extractVm(data *schema.ResourceData, ctx context.Context) tbclient.Vm {
301301
as := advancedSettings.([]interface{})[0].(map[string]interface{})
302302
var evcMode string
303303
if as["evc_mode"].(string) != "" {
304-
s := as["evc_mode"].(string)
305-
evcMode = s
304+
evcMode = as["evc_mode"].(string)
306305
}
307306
vm.AdvancedSettings = &tbclient.VmAdvancedSettings{
308307
NameInHypervisor: as["name_in_hypervisor"].(string),

0 commit comments

Comments
 (0)