upload-vacuum-v3: be more gracious with error retrial

This commit is contained in:
Harald Sitter
2026-04-22 13:18:09 +02:00
parent 48688af30a
commit 67a4091262

View File

@@ -347,7 +347,8 @@ func main() {
log.Fatal(err)
}
args := []string{"prune", "--yes", "--store", "s3+https://storage.kde.org/kde-linux/sysupdate/store"}
log.Println("Pruning desync store with caibx files", caibxFiles)
args := []string{"prune", "--yes", "--error-retry-base-interval=8s", "--store", "s3+https://storage.kde.org/kde-linux/sysupdate/store"}
args = append(args, caibxFiles...)
cmd := exec.Command("desync", args...)
cmd.Stdout = os.Stdout