renamed reserve queue to reserve pool

This commit is contained in:
2026-05-27 17:45:35 +02:00
parent 79c643c938
commit 6731322758
4 changed files with 10 additions and 10 deletions

View File

@@ -23,7 +23,7 @@
# 2023-04-07: Added '*.oga' and '*.OGA' to the list of audio types to ignore
#
# 2023-06-22: Added directories containing the string '_9999_' to the ignore
# list. This is apparently used for shows destined for the reserve queue. This
# list. This is apparently used for shows destined for the reserve pool. This
# might be a temporary measure because we might want to process such shows in
# this workflow.
#-------------------------------------------------------------------------------

View File

@@ -179,7 +179,7 @@ $dbh->do("set time_zone = '+00:00'") or carp $dbh->errstr;
#
# Query the reservations table for shows which are more or less kosher.
# 2023-07-01 the episode number 9999 is currently a marker that the show is
# for the reserve queue, so we omit it
# for the reserve pool, so we omit it
#
$sth1 = $dbh->prepare(
q{SELECT * FROM reservations WHERE ep_num > 0 ORDER BY timestamp});
@@ -226,7 +226,7 @@ say "No show reservations" if ( $count == 0 );
if (@res) {
say " ";
say "Reserve queue entries";
say "reserve pool entries";
$count = 0;
for my $r (@res) {