diff options
author | Christian Berendt <berendt@b1-systems.de> | 2013-10-24 16:19:17 +0200 |
---|---|---|
committer | Christian Berendt <berendt@b1-systems.de> | 2013-10-24 16:19:17 +0200 |
commit | dd82481f59b35a8dcc586868e61753210e9eba0c (patch) | |
tree | ef36601779534b395d29d4a7237a16d60eb5ddbd /apps/files_external/lib | |
parent | 128d3221cc6a0cb4f111b2c4c5024345a6b1dd10 (diff) | |
download | nextcloud-server-dd82481f59b35a8dcc586868e61753210e9eba0c.tar.gz nextcloud-server-dd82481f59b35a8dcc586868e61753210e9eba0c.zip |
add configuration parameter to manually set the timeout of HTTP requests
Diffstat (limited to 'apps/files_external/lib')
-rwxr-xr-x | apps/files_external/lib/config.php | 3 | ||||
-rw-r--r-- | apps/files_external/lib/swift.php | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 65d541c4b16..1210156df0b 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -95,7 +95,8 @@ class OC_Mount_Config { 'tenant' => 'Tenantname (OpenStack Object Storage)', 'password' => '*Password (OpenStack Object Storage)', 'service_name' => 'Service Name (OpenStack Object Storage)', - 'url' => 'URL of identity endpoint (OpenStack Object Storage)' + 'url' => 'URL of identity endpoint (OpenStack Object Storage)', + 'timeout' => 'Timeout of HTTP requests in seconds (optional)', ) ); } diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index fe28e124fe3..bb650dacc7b 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -109,6 +109,11 @@ class Swift extends \OC\Files\Storage\Common { } $this->anchor = new \OpenCloud\OpenStack($params['url'], $settings); + + if (isset($params['timeout'])) { + $this->anchor->setHttpTimeout($params['timeout']); + } + $this->connection = $this->anchor->ObjectStore($params['service_name'], $params['region'], 'publicURL'); try { |