On Wed, Oct 03, 2018 at 02:13:18AM -0700, anjoze wrote: > Yes Cron is running: > # Hourly holds queue updated > 52 * * * * __KOHA_USER__ $KOHA_CRON_PATH/holds/build_holds_queue.pl > >/dev/null 2>&1 > > Nothing happens :(
You might try changing the cron job command so that it doesn't throw away all output: 52 * * * * __KOHA_USER__ $KOHA_CRON_PATH/holds/build_holds_queue.pl >> /tmp/build_holds_queue.log 2>&1 Then look at /tmp/build_holds_queue.log -- maybe something there will explain what's going wrong. (I hate cron jobs that blithely discard all output!) Paul. -- Paul Hoffman <p...@flo.org> Software Services Manager Fenway Library Organization 550 Huntington Ave. Boston, MA 02115 (617) 442-2384 _______________________________________________ Koha mailing list http://koha-community.org Koha@lists.katipo.co.nz https://lists.katipo.co.nz/mailman/listinfo/koha