You are here

function zoomapi_update_7209 in Zoom API 7.2

Set queues to use custom system queue.

File

./zoomapi.install, line 273
Install, update, and uninstall hooks for the Zoom API module.

Code

function zoomapi_update_7209() {
  $queues = zoomapi_cron_queue_info();
  foreach ($queues as $key => $info) {
    variable_set("queue_class_{$key}", 'ZoomAPISystemQueue');
  }
}