Remove some unnecessary transcode size limits.

This commit is contained in:
Greyson Parrelli
2026-07-27 14:56:45 -04:00
committed by Michelle Tang
parent 635b5795ea
commit be9ae5c8f2
5 changed files with 11 additions and 14 deletions
@@ -164,7 +164,7 @@ public final class StreamingTranscoder {
final boolean sizeLimitEnabled = 0 < upperSizeLimit;
if (sizeLimitEnabled && upperSizeLimit < fileSizeEstimate) {
throw new VideoSizeException("Size constraints could not be met!");
throw new VideoSizeException("Size constraints could not be met! upperSizeLimit: " + upperSizeLimit + ", fileSizeEstimate: " + fileSizeEstimate);
}
final long startTime = System.currentTimeMillis();