8000 Custom remote image download timeouts · Issue #129 · jublo/codebird-php · GitHub
[go: up one dir, main page]

Skip to content
Custom remote image download timeouts #129
Closed
@lifeboatpres

Description

@lifeboatpres

codebird-php 2.7 failed when I gave it the image http://interestingengineering.com/wp-content/uploads/2015/08/braincontrol.png

I investigated and there was a timeout problem at:

curl_setopt($ch, _CURLOPT_TIMEOUT_MS, 5000);
curl_setopt($ch, _CURLOPT_CONNECTTIMEOUT_MS, 2000);

I solved it by doubling the values. (I'm sure this was overkill but I don't want to see the problem again.) My new code is:

curl_setopt($ch, _CURLOPT_TIMEOUT_MS, 10000);
curl_setopt($ch, _CURLOPT_CONNECTTIMEOUT_MS, 4000);

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0