From b7d4664d6b6cb92c4fc9307cd32e2c3060f0503c Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Tue, 25 Jun 2019 14:00:40 -0400 Subject: [PATCH] Correct Last Action Variable Name --- ZertoApiWrapper/Private/Invoke-ZARestRequest.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ZertoApiWrapper/Private/Invoke-ZARestRequest.ps1 b/ZertoApiWrapper/Private/Invoke-ZARestRequest.ps1 index 8581a2f..1e35829 100644 --- a/ZertoApiWrapper/Private/Invoke-ZARestRequest.ps1 +++ b/ZertoApiWrapper/Private/Invoke-ZARestRequest.ps1 @@ -11,7 +11,7 @@ function Invoke-ZARestRequest { if ( -not ((Test-Path variable:script:zaLastActionTime) -and (Test-Path variable:script:zaHeaders)) ) { Write-Error -Message "Zerto Analytics Connection does not Exist. Please run Connect-ZertoAnalytics first to establish a connection" break - } elseif ( (Test-Path variable:script:zaHeaders) -and $([datetime]$script:zaLastAction).addMinutes(60) -lt $(get-date) ) { + } elseif ( (Test-Path variable:script:zaHeaders) -and $([datetime]$script:zaLastActionTime).addMinutes(60) -lt $(get-date) ) { Write-Error -Message "Authorization Token has Expired. Please re-authorize to the Zerto Analytics Portal" break } else {