[solved] Reload queues in 1.4 from cronjob safely?

solution:

this worked
/usr/sbin/asterisk -rx “reload app_queue.so”

this should also work
asterisk -rx “queue reload”


I’m looking for a way to have asterisk take up its new que settings during heavy call volume. With 1.2 you could put this line in the crontab, or have cron call a script that contains:

asterisk -rx “reload”

and everything would be well.

With 1.4 this causes a loss of service occasionally. Any way to get the new que.

try /usr/sbin/asterisk -rx "reload app_queue.so"

That worked great, thanks much.