Skip to content

Commit

Permalink
Increase timeout for netperf jobs (#408)
Browse files Browse the repository at this point in the history
* increase timeout from 1 hour to 2 hours

* increase to 2.5 hours
  • Loading branch information
ProjectsByJackHe authored Nov 6, 2024
1 parent c35f1a2 commit 11b4832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-workflow.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function Get-RunStatus {

function Wait-ForRun {
param([string]$id)
for ($i = 0; $i -lt 120; $i++) { # 120 * 30 sec = 1 hour
for ($i = 0; $i -lt 300; $i++) { # 300 * 30 sec = 2.5 hours
if (Get-RunStatus $id) {
return
}
Expand Down

0 comments on commit 11b4832

Please sign in to comment.