From 169e628c7b59c9e0f8fc3eb3aadb97e03a72fb30 Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Sun, 8 Mar 2020 14:57:19 -0400 Subject: [PATCH] Remove Debugging Output --- ZertoApiWrapper/Public/Get-ZAPlannerStatsReport.ps1 | 2 -- 1 file changed, 2 deletions(-) diff --git a/ZertoApiWrapper/Public/Get-ZAPlannerStatsReport.ps1 b/ZertoApiWrapper/Public/Get-ZAPlannerStatsReport.ps1 index e1d6f69..e247c86 100644 --- a/ZertoApiWrapper/Public/Get-ZAPlannerStatsReport.ps1 +++ b/ZertoApiWrapper/Public/Get-ZAPlannerStatsReport.ps1 @@ -52,9 +52,7 @@ function Get-ZAPlannerStatsReport { foreach ($vmId in $vmIdentifier) { $body['vms'].Add(@{'identifier' = $vmId; 'desiredJournalHistory' = $desiredJournalHistory }) } - ($body | ConvertTo-Json) $reportId = Invoke-ZARestRequest -uri $uri -method POST -body ($body | ConvertTo-Json) - $reportId.reportId $uri = '{0}?reportId={1}' -f $uri, $reportId.reportId Invoke-ZARestRequest -uri $uri }