Skip to content

Commit

Permalink
fix #309 (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron authored Dec 3, 2024
1 parent 2ca6174 commit ad28619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
- Fix bogus error during `New-VcMachineCommonKeystore` [#304](https://github.com/Venafi/VenafiPS/issues/304)
- Update VC machine creation components due to API deprecation
- Fix `Find-VdcCertificate -CountOnly` error [#309](https://github.com/Venafi/VenafiPS/issues/309)
2 changes: 1 addition & 1 deletion VenafiPS/Public/Invoke-VenafiRestMethod.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function Invoke-VenafiRestMethod {
'head' {
# a head method requires the params be provided as a query string, not body
# invoke-webrequest does not do this so we have to build the string manually
$newUri = New-HttpQueryString -Uri $uri -QueryParameter $Body
$newUri = New-HttpQueryString -Uri $params.Uri -QueryParameter $Body
$params.Uri = $newUri
$params.Body = $null
}
Expand Down

0 comments on commit ad28619

Please sign in to comment.