ADD job failed attribute to display failed status in API

If a compression processing job fails, the JobStatus object within the Job should update to reflect this fail.
This commit is contained in:
2025-12-15 19:57:00 +00:00
parent f9daef9a4b
commit 92cb9265ca
3 changed files with 7 additions and 1 deletions

View File

@@ -77,7 +77,9 @@ public class ClipService {
value,
outputFile,
inputFile.getName()
)));
))).exceptionally(ex -> {
throw new FFMPEGException("FFMPEG Compression failed: " + ex.getMessage());
});
}
/**