Fix retries: don't upload metadata three times
This commit is contained in:
parent
5418a8ef12
commit
17d0885e77
2 changed files with 5 additions and 0 deletions
|
@ -135,6 +135,7 @@ internal class ApkBackupManager(
|
||||||
for (i in 1..n) {
|
for (i in 1..n) {
|
||||||
try {
|
try {
|
||||||
block()
|
block()
|
||||||
|
return
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
if (i == n) throw e
|
if (i == n) throw e
|
||||||
Log.e(TAG, "Error (#$i), we'll keep trying", e)
|
Log.e(TAG, "Error (#$i), we'll keep trying", e)
|
||||||
|
|
|
@ -234,6 +234,10 @@ internal class ApkBackupManagerTest : TransportTest() {
|
||||||
apkBackup.backupApkIfNecessary(notAllowedPackages[1], any())
|
apkBackup.backupApkIfNecessary(notAllowedPackages[1], any())
|
||||||
metadataOutputStream.close()
|
metadataOutputStream.close()
|
||||||
}
|
}
|
||||||
|
// metadata should only get uploaded once
|
||||||
|
verify(exactly = 1) {
|
||||||
|
metadataManager.uploadMetadata(metadataOutputStream)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in a new issue