From 92090e9e280d1dba72ea7dd935ad4340bfea1e32 Mon Sep 17 00:00:00 2001 From: Tinyblargon <76069640+Tinyblargon@users.noreply.github.com> Date: Sat, 8 Jun 2024 23:35:15 +0200 Subject: [PATCH] remove deprecation warning --- proxmox/client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxmox/client.go b/proxmox/client.go index 69449859..c583359f 100644 --- a/proxmox/client.go +++ b/proxmox/client.go @@ -1494,7 +1494,7 @@ func getStorageAndVolumeName( return storageName, volumeName } -// Deprecated: use ConfigQemu.Update() instead +// Still used by Terraform. Deprecated: use ConfigQemu.Update() instead func (c *Client) UpdateVMPool(vmr *VmRef, pool string) (exitStatus interface{}, err error) { // Same pool if vmr.pool == pool { @@ -1632,7 +1632,7 @@ func (c *Client) UpdateVMHA(vmr *VmRef, haState string, haGroup string) (exitSta return } -// Deprecated: use ListPoolsWithComments() instead +// Still used by Terraform. Deprecated: use ListPoolsWithComments() instead func (c *Client) GetPoolList() (pools map[string]interface{}, err error) { return c.GetItemList("/pools") }