Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-http-client
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-http-client
Commits
6a567334
Commit
6a567334
authored
5 years ago
by
Marcin Kolanko
Browse files
Options
Downloads
Plain Diff
Merge branch 'devel' into 'master'
Devel See merge request
!6
parents
737ce4c8
eaca5326
No related branches found
Branches containing commit
Tags
1.0.3
Tags containing commit
1 merge request
!6
Devel
Pipeline
#5294
failed with stages
in 3 minutes and 42 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changelog.txt
+3
-0
3 additions, 0 deletions
changelog.txt
src/Curl/CurlClient.php
+1
-1
1 addition, 1 deletion
src/Curl/CurlClient.php
with
4 additions
and
1 deletion
changelog.txt
+
3
−
0
View file @
6a567334
= 1.0.3 - 2020-04-10 =
* Increased Curl connection timeout
= 1.0.2 - 2019-12-06 =
* Fixed issue with headers
...
...
This diff is collapsed.
Click to expand it.
src/Curl/CurlClient.php
+
1
−
1
View file @
6a567334
...
...
@@ -76,7 +76,7 @@ class CurlClient implements HttpClient {
\CURLOPT_CUSTOMREQUEST
=>
$method
,
\CURLOPT_HTTPHEADER
=>
$this
->
compileRequestHeaders
(
$headers
),
\CURLOPT_URL
=>
$url
,
\CURLOPT_CONNECTTIMEOUT
=>
10
,
\CURLOPT_CONNECTTIMEOUT
=>
25
,
\CURLOPT_TIMEOUT
=>
$timeOut
,
\CURLOPT_RETURNTRANSFER
=>
\true
,
// Return response as string
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment