Skip to content

Commit

Permalink
Fix issue on PowerShell 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkht committed May 14, 2024
1 parent ecb5f91 commit 79209f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Public/Batch/Wait-Batch.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function Wait-Batch {
}

try {
[uint]$PollCounter = 0
[uint32]$PollCounter = 0
$ProgressTitle = 'Waiting for completion...'
do {
#Wait
Expand Down
2 changes: 1 addition & 1 deletion Public/Runs/Wait-ThreadRun.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function Wait-ThreadRun {
}

try {
[uint]$PollCounter = 0
[uint32]$PollCounter = 0
$ProgressTitle = 'Waiting for completes...'
do {
#Wait
Expand Down
2 changes: 1 addition & 1 deletion Public/VectorStores/Batches/Wait-VectorStoreFileBatch.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function Wait-VectorStoreFileBatch {
}

try {
[uint]$PollCounter = 0
[uint32]$PollCounter = 0
$ProgressTitle = 'Waiting for completion...'
do {
#Wait
Expand Down

0 comments on commit 79209f0

Please sign in to comment.