Problem/Motivation

No matter how high I set the request_timeout, I am always met with "...cURL error 28: Operation timed out after 30001 milliseconds with 0 bytes received..."

Looks to be that `$options = [RequestOptions::SINK => $sink];` does not add the timeout for the call.

Using a custom fetcher, I have resolved for now by updating to

$options = [
  RequestOptions::SINK => $sink,
  'timeout' => $this->configuration['request_timeout'],
];

Issue fork feeds-3372534

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

nicole.harnish created an issue. See original summary.

nicole.harnish’s picture

Issue summary: View changes

MegaChriz made their first commit to this issue’s fork.

megachriz’s picture

Issue summary: View changes
Status: Active » Needs review

I've added the code in a merge request. :)

  • MegaChriz committed 01c3b774 on 8.x-3.x
    Issue #3372534 by MegaChriz, nicole.harnish: Fixed request_timeout...
megachriz’s picture

Status: Needs review » Fixed

Merged the code! Thanks for reporting and testing, nicole.harnish :)

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.