You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If processing fails during mediainfo file inspection a pid file is never created. When get_pid returns nil it gets converted to 0 by the call to to_i in running? which will always be true. So the encode will never appear as completed.
If processing fails during mediainfo file inspection a pid file is never created. When
get_pid
returns nil it gets converted to 0 by the call toto_i
inrunning?
which will always be true. So the encode will never appear as completed.active_encode/lib/active_encode/engine_adapters/ffmpeg_adapter.rb
Lines 244 to 249 in 3cac5a2
I found this with an encode in production and worked around the issue by creating a
pid
file with-1
as its contents.The text was updated successfully, but these errors were encountered: