Commit ce00c7ad authored by Him188's avatar Him188

Retry logs

parent 38f68f9a
......@@ -85,14 +85,21 @@ object CuiCloud {
val bytes = file.readBytes()
runBlocking {
retryCatching(50) {
var first = true
retryCatching(1000) {
if (!first) {
println()
println()
println("Upload failed. Waiting 15s")
delay(15_000)
}
first = false
uploadToCuiCloud(
cuiCloudUrl,
key,
"/mirai/${project.name}/${file.nameWithoutExtension}.mp4",
bytes
)
delay(30_000)
}.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