From f12fb096993fef6021b94eef8bc097184b6e41d8 Mon Sep 17 00:00:00 2001 From: Robert McLeod Date: Tue, 26 May 2020 14:52:34 +1000 Subject: [PATCH] Fix for retrieving job statuses --- functions/Get-JobStatus.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/Get-JobStatus.ps1 b/functions/Get-JobStatus.ps1 index 3d53796..d7a8477 100644 --- a/functions/Get-JobStatus.ps1 +++ b/functions/Get-JobStatus.ps1 @@ -23,8 +23,8 @@ function Get-JobStatus { Param ( # Unique Id of the background job whose status to retrieve [Parameter(Mandatory = $false)] - [ValidateRange(1, [Int64]::MaxValue)] - [Int64[]] + [ValidateNotNullOrEmpty()] + [String[]] $Id, # Zendesk Connection Context from `Get-ZendeskConnection`