Removes obsolete status callback from gearman client

Status callback function was previously removed from run-jobs, but the
callback was still being registered. This change removes the
registration to prevent a warning.
This commit is contained in:
2010-09-25 17:11:47 +01:00
parent 14c6d51564
commit ec4cc8dad4

View File

@@ -14,7 +14,6 @@ try {
$gearman->addServers($config->get('rips.job_servers'));
$gearman->setCreatedCallback("gearman_created_callback");
$gearman->setDataCallback("gearman_data_callback");
$gearman->setStatusCallback("gearman_status_callback");
$gearman->setCompleteCallback("gearman_complete_callback");
$gearman->setFailCallback("gearman_fail_callback");