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
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
Comment #2
nicole.harnish commentedComment #5
megachrizI've added the code in a merge request. :)
Comment #8
megachrizMerged the code! Thanks for reporting and testing, nicole.harnish :)