Changed labels of chunk TTL to mention chunks

This commit is contained in:
Vincent Petry 2016-05-24 15:18:56 +02:00
parent c9b26d065b
commit 51b0036d8f
No known key found for this signature in database
GPG Key ID: AF8F9EFC56562186
2 changed files with 3 additions and 3 deletions

View File

@ -970,12 +970,12 @@ $CONFIG = array(
'cache_path' => '', 'cache_path' => '',
/** /**
* TTL of files located in the cache folder before they're removed by * TTL of chunks located in the cache folder before they're removed by
* garbage collection (in seconds). Increase this value if users have * garbage collection (in seconds). Increase this value if users have
* issues uploading very large files via the ownCloud Client as upload isn't * issues uploading very large files via the ownCloud Client as upload isn't
* completed within one day. * completed within one day.
*/ */
'cache_folder_gc_ttl' => 86400, // 60*60*24 = 1 day 'cache_chunk_gc_ttl' => 86400, // 60*60*24 = 1 day
/** /**
* Using Object Store with ownCloud * Using Object Store with ownCloud

View File

@ -48,7 +48,7 @@ class OC_FileChunking {
*/ */
public function __construct($info) { public function __construct($info) {
$this->info = $info; $this->info = $info;
$this->ttl = \OC::$server->getConfig()->getSystemValue('cache_folder_gc_ttl', 86400); $this->ttl = \OC::$server->getConfig()->getSystemValue('cache_chunk_gc_ttl', 86400);
} }
public function getPrefix() { public function getPrefix() {