Fundraising/Internal-facing/CiviCRM/Coworker
coworker run
Logs currently go into syslog
What uses coworker
- deduper
- snooze
- (hoping to) recurring failure email from the recurring charge job
Check queue messages
select * from civicrm.civicrm_queue_item or check https://civicrm.wikimedia.org/civicrm/queueitems
if you want to resend a failed message as below
e.g.
id: xxxxx
queue_name: xxxx/damaged
weight: 100
submit_time: 2025-12-14 05:57:53
release_time: 2025-12-14 06:57:52
data: xxxxxx
run_count: 26
1 row in set (0.000 sec)
reset the run_count to 0 then remove the damage from queue name
UPDATE
civicrm_queue_item SET queue_name = xxxx, run_count = 0 WHERE id = xxxxx;