Commit ce00c7ad authored by Him188's avatar Him188

Retry logs

parent 38f68f9a
...@@ -85,14 +85,21 @@ object CuiCloud { ...@@ -85,14 +85,21 @@ object CuiCloud {
val bytes = file.readBytes() val bytes = file.readBytes()
runBlocking { runBlocking {
retryCatching(50) { var first = true
retryCatching(1000) {
if (!first) {
println()
println()
println("Upload failed. Waiting 15s")
delay(15_000)
}
first = false
uploadToCuiCloud( uploadToCuiCloud(
cuiCloudUrl, cuiCloudUrl,
key, key,
"/mirai/${project.name}/${file.nameWithoutExtension}.mp4", "/mirai/${project.name}/${file.nameWithoutExtension}.mp4",
bytes bytes
) )
delay(30_000)
}.getOrThrow() }.getOrThrow()
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment