0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-22 19:38:35 +00:00

Latest work

This commit is contained in:
Dan Petersen 2019-12-08 18:06:24 +01:00
parent c505a34faf
commit 96cc4ef2e6

View File

@ -94,8 +94,6 @@ func (c *VirtualEnvironmentClient) DoRequest(method, path string, requestBody in
encodedValues := v.Encode()
urlEncodedRequestBody = bytes.NewBufferString(encodedValues)
log.Printf("[DEBUG] Values: %s", encodedValues)
}
req, err := http.NewRequest(method, fmt.Sprintf("%s/%s/%s", c.Endpoint, basePathJSONAPI, path), urlEncodedRequestBody)