Add missing formatting variable to the Get-ZAVpg function (#41)

* Add missing formatting variable

* Update ReleaseNotes
This commit is contained in:
Wes Carroll
2019-07-26 08:33:41 -04:00
committed by GitHub
parent 06b6bb09d7
commit 46951b76ba
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -9,3 +9,4 @@
### Zerto Analytics ### Zerto Analytics
* Fixed an [issue](https://github.com/ZertoPublic/ZertoApiWrapper/issues/36) where the Zerto Analytics Rest Request function was not checking for the token before attempting a connection. * Fixed an [issue](https://github.com/ZertoPublic/ZertoApiWrapper/issues/36) where the Zerto Analytics Rest Request function was not checking for the token before attempting a connection.
* Fixed an [issue](https://github.com/ZertoPublic/ZertoApiWrapper/issues/40) where the `Get-ZAVpg` method would return a 404 error when a `-vpgIdentifier` parameter was specified.
+1 -1
View File
@@ -28,7 +28,7 @@ function Get-ZAVpg {
} }
vpg { vpg {
$uri = "{0}/$vpgIdentifier" $uri = "{0}/$vpgIdentifier" -f $uri
} }
} }