aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/config.sample.php4
-rw-r--r--lib/private/Files/Storage/DAV.php9
2 files changed, 9 insertions, 4 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 4330b0cda60..c87e1cad9fa 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -290,9 +290,9 @@ $CONFIG = [
'session_lifetime' => 60 * 60 * 24,
/**
- * The timeout for requests to remote servers (e.g., needed for federated shares).
+ * The timeout in seconds for requests to servers made by the DAV component (e.g., needed for federated shares).
*/
-'remote_curl_timeout' => 30,
+'davstorage.request_timeout' => 30,
/**
* `true` enabled a relaxed session timeout, where the session timeout would no longer be
diff --git a/lib/private/Files/Storage/DAV.php b/lib/private/Files/Storage/DAV.php
index 366ab4dda14..a769f799ed3 100644
--- a/lib/private/Files/Storage/DAV.php
+++ b/lib/private/Files/Storage/DAV.php
@@ -93,6 +93,9 @@ class DAV extends Common {
protected LoggerInterface $logger;
protected IEventLogger $eventLogger;
+ /** @var int */
+ private $timeout;
+
/**
* @param array $params
* @throws \Exception
@@ -135,6 +138,8 @@ class DAV extends Common {
}
$this->logger = \OC::$server->get(LoggerInterface::class);
$this->eventLogger = \OC::$server->get(IEventLogger::class);
+ // This timeout value will be used for the download and upload of files
+ $this->timeout = \OC::$server->getConfig()->getSystemValueInt('davstorage.request_timeout', 30);
}
protected function init() {
@@ -375,7 +380,7 @@ class DAV extends Common {
'auth' => [$this->user, $this->password],
'stream' => true,
// set download timeout for users with slow connections or large files
- 'timeout' => \OC::$server->getConfig()->getSystemValueInt('remote_curl_timeout', 30)
+ 'timeout' => $this->timeout
]);
} catch (\GuzzleHttp\Exception\ClientException $e) {
if ($e->getResponse() instanceof ResponseInterface
@@ -534,7 +539,7 @@ class DAV extends Common {
'body' => $source,
'auth' => [$this->user, $this->password],
// set upload timeout for users with slow connections or large files
- 'timeout' => \OC::$server->getConfig()->getSystemValueInt('remote_curl_timeout', 30)
+ 'timeout' => $this->timeout
]);
$this->removeCachedFile($target);