Skip to content

Queue - Updated CURL library to Guzzle

Phil Taylor requested to merge feature/queue_guzzle into master

Done:

  • Removed deprecated CURL library and replaced it with Guzzle

Why:

Implemented for:

Test:

  1. Create a queue job
  2. Confirm the CURL works and the queue job is updated as "completed"
  3. Confirm the queue and job ID's are sent in the HTTP header
$queue_id = $this->input->server('HTTP_QUEUE_ID');
$job_id = $this->input->server('HTTP_JOB_ID');```

Merge request reports