Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions .github/workflows/scripts/cross-pr-checkout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,23 @@ func getPRInfo(repository: String, prNumber: String) async throws -> PRInfo {
throw GenericError("Failed to form URL for GitHub API")
}

do {
let data = try await downloadData(from: prInfoUrl)
return try JSONDecoder().decode(PRInfo.self, from: data)
} catch {
throw GenericError("Failed to load PR info from \(prInfoUrl): \(error)")
let maxAttempts = 5
var attempt = 1
while true {
do {
let data = try await downloadData(from: prInfoUrl)
return try JSONDecoder().decode(PRInfo.self, from: data)
} catch {
if attempt == maxAttempts {
throw GenericError("Failed to load PR info from \(prInfoUrl) after \(maxAttempts) attempts: \(error)")
}
let delaySeconds = UInt64(1 << (attempt - 1))
print(
"Failed to load PR info from \(prInfoUrl) (attempt \(attempt) of \(maxAttempts)): \(error). Retrying in \(delaySeconds)s..."
)
try await Task.sleep(nanoseconds: delaySeconds * 1_000_000_000)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think something like this should be possible, which reads a little nicer.

Suggested change
try await Task.sleep(nanoseconds: delaySeconds * 1_000_000_000)
try await Task.sleep(for: .seconds(delaySeconds))

attempt += 1
}
}
}

Expand Down
Loading