Skip to content

Commit

Permalink
Merge pull request #9158 from fuzionnz/CRM-19444
Browse files Browse the repository at this point in the history
CRM-19444. Make queues less noisy when operating normally.
  • Loading branch information
colemanw authored Oct 3, 2016
2 parents 7fb9671 + 837b78e commit fb689c3
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions CRM/Queue/Queue/Sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,6 @@ public function claimItem($lease_time = 3600) {
$dao->data = unserialize($dao->data);
return $dao;
}
else {
CRM_Core_Error::debug_var('not ready for release', $dao);
return FALSE;
}
}
else {
CRM_Core_Error::debug_var('no items found');
return FALSE;
}
}

Expand Down Expand Up @@ -197,10 +189,6 @@ public function stealItem($lease_time = 3600) {
$dao->data = unserialize($dao->data);
return $dao;
}
else {
CRM_Core_Error::debug_var('no items found');
return FALSE;
}
}

/**
Expand Down

0 comments on commit fb689c3

Please sign in to comment.