Implement Queue Health On New File and Queue Transcode on Health Success
All checks were successful
/ release (push) Successful in 32s

This commit is contained in:
speatzle 2024-10-11 17:07:52 +02:00
parent f08a07e87d
commit 12f700d1d0
7 changed files with 60 additions and 24 deletions

View file

@ -1,3 +1,3 @@
ALTER TABLE libraries
DROP IF EXISTS transcode_command,
DROP IF EXISTS health_command;
DROP IF EXISTS transcode_command_id,
DROP IF EXISTS health_command_id;

View file

@ -1,3 +1,3 @@
ALTER TABLE libraries
ADD transcode_command bigint REFERENCES ffmpeg_commands(id),
ADD health_command bigint REFERENCES ffmpeg_commands(id);
ADD transcode_command_id bigint REFERENCES ffmpeg_commands(id),
ADD health_command_id bigint REFERENCES ffmpeg_commands(id);