Skip to content

Commit

Permalink
refactor: Disambiguate 'already linked' usage
Browse files Browse the repository at this point in the history
  • Loading branch information
in03 committed Feb 20, 2023
1 parent b11c5de commit f356fd0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/proxima/cli/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,13 @@ def main():
media_pool_items = resolve.get_media_pool_items(track_items)
batch = resolve.generate_batch(media_pool_items, settings)

batch.remove_already_linked()
# 'Remove healthy' runs twice because 'Handle Existing Unlinked'
# can make media healthy, ut we also don't want it to
# handle healthy media.

batch.remove_healthy()
batch.handle_existing_unlinked()
batch.remove_already_linked()
batch.remove_healthy()
batch.handle_offline_proxies()
app_status = AppStatus("proxima")

Expand Down

0 comments on commit f356fd0

Please sign in to comment.