LLMS_Background_Updater::handle_cron_healthcheck()

Handle cron healthcheck


Description Description

Restart the background process if not already running and data exists in the queue.

Overridden to enable the "force" option to work, replaces "exit" with "return" so that we can redirect and manually call the cronjob


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.background.updater.php

	public function handle_cron_healthcheck() {

		// Background process already running.
		if ( $this->is_process_running() ) {
			return;
		}

		// No data to process.
		if ( $this->is_queue_empty() ) {
			$this->clear_scheduled_event();
			return;
		}

		$this->handle();

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.4.3 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.