Skip to content

Commit

Permalink
fix(allure): reduced timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
matzuk committed Dec 12, 2023
1 parent df35854 commit 7f5cfb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allure/rawAllure.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func GetArtifacts(host string, token string, runId string, whereToSave string) {
if !downloadFilesAndCheckForNew(host, token, runId, &fileTree, whereToSave, sem, errors, 3) { // Assuming 3 retries
break
}
time.Sleep(time.Duration(60) * time.Second)
time.Sleep(time.Duration(10) * time.Second)
}

close(errors) // Close the error channel after all operations are done
Expand Down

0 comments on commit 7f5cfb0

Please sign in to comment.