summaryrefslogtreecommitdiff
path: root/app/Core/Http
diff options
context:
space:
mode:
Diffstat (limited to 'app/Core/Http')
-rw-r--r--app/Core/Http/Client.php18
1 files changed, 2 insertions, 16 deletions
diff --git a/app/Core/Http/Client.php b/app/Core/Http/Client.php
index 3793fa33..84099a23 100644
--- a/app/Core/Http/Client.php
+++ b/app/Core/Http/Client.php
@@ -14,20 +14,6 @@ use Kanboard\Job\HttpAsyncJob;
class Client extends Base
{
/**
- * HTTP connection timeout in seconds
- *
- * @var integer
- */
- const HTTP_TIMEOUT = 10;
-
- /**
- * Number of maximum redirections for the HTTP client
- *
- * @var integer
- */
- const HTTP_MAX_REDIRECTS = 2;
-
- /**
* HTTP client user agent
*
* @var string
@@ -225,8 +211,8 @@ class Client extends Base
'http' => [
'method' => $method,
'protocol_version' => 1.1,
- 'timeout' => self::HTTP_TIMEOUT,
- 'max_redirects' => self::HTTP_MAX_REDIRECTS,
+ 'timeout' => HTTP_TIMEOUT,
+ 'max_redirects' => HTTP_MAX_REDIRECTS,
'header' => implode("\r\n", $headers),
'content' => $content,
'ignore_errors' => $raiseForErrors,