Bug 31995: (QA follow-up) Add 'system preference' to help text

We often get asked where something can be found in setting,
adding the hint that RealTimeHoldsQueue is a system preference
is hopefully helpful here.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Katrin Fischer 2022-11-02 17:00:32 +00:00 committed by Tomas Cohen Arazi
parent 1088e3fb79
commit a4f2e6ae85
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -43,7 +43,7 @@ Prints the manual page and exits.
=item B<--force>
Allows this script to rebuild the entire holds queue even if RealTimeHoldsQueue is enabled.
Allows this script to rebuild the entire holds queue even if the RealTimeHoldsQueue system preference is enabled.
=back
@ -70,7 +70,7 @@ pod2usage( -exitval => 0, -verbose => 2 ) if $man;
my $rthq = C4::Context->preference('RealTimeHoldsQueue');
if ( $rthq && !$force ) {
say "Real Time Holds Queue is enabled, holds queue not built.";
say "RealTimeHoldsQueue system preference is enabled, holds queue not built.";
say "Use --force to force building the holds queue.";
exit(1);
}