release v2026.05.11.3: caching, perf, playlist polish #41

Merged
bvandeusen merged 262 commits from dev into main 2026-05-11 20:35:49 -04:00
Showing only changes of commit 0415b5ccc3 - Show all commits
@@ -126,8 +126,12 @@ class MutationReplayer @Inject constructor(
}
true
} catch (
@Suppress("TooGenericExceptionCaught") e: Throwable,
@Suppress("TooGenericExceptionCaught", "SwallowedException") e: Throwable,
) {
// Intentional swallow: the row stays in the queue with
// attempts + lastAttemptAt incremented; next drain pass
// retries. Per-attempt diagnostic logging lands when we
// wire up Timber at the replayer level.
false
}
}
@@ -147,8 +151,12 @@ class MutationReplayer @Inject constructor(
discoverApi.createRequest(body)
true
} catch (
@Suppress("TooGenericExceptionCaught") e: Throwable,
@Suppress("TooGenericExceptionCaught", "SwallowedException") e: Throwable,
) {
// Intentional swallow: the row stays in the queue with
// attempts + lastAttemptAt incremented; next drain pass
// retries. Per-attempt diagnostic logging lands when we
// wire up Timber at the replayer level.
false
}
}
@@ -159,8 +167,12 @@ class MutationReplayer @Inject constructor(
quarantineApi.unflag(decoded.trackId)
true
} catch (
@Suppress("TooGenericExceptionCaught") e: Throwable,
@Suppress("TooGenericExceptionCaught", "SwallowedException") e: Throwable,
) {
// Intentional swallow: the row stays in the queue with
// attempts + lastAttemptAt incremented; next drain pass
// retries. Per-attempt diagnostic logging lands when we
// wire up Timber at the replayer level.
false
}
}