You are here

function drush_job_scheduler_waiting_perform in Job Scheduler 8.3

Performs a job.

File

modules/job_scheduler_waiting/job_scheduler_waiting.drush.inc, line 27
Command-line tools to aid performing and developing migrations.

Code

function drush_job_scheduler_waiting_perform($name = '') {
  if (!$name) {
    drush_set_error('JOB_ERROR', dt('You must specify name of the job.'));
    return;
  }
  job_scheduler_waiting_perform_job($name);
}