diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-24 15:18:56 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-24 15:18:56 +0200 |
commit | 51b0036d8f714e3693be744784f65c34dee64afa (patch) | |
tree | fd2a9754e210d396ccfdcc80affc65c571ceebbc /config | |
parent | c9b26d065b567fa3a62a5ecfcfebb8fb275e9f1c (diff) | |
download | nextcloud-server-51b0036d8f714e3693be744784f65c34dee64afa.tar.gz nextcloud-server-51b0036d8f714e3693be744784f65c34dee64afa.zip |
Changed labels of chunk TTL to mention chunks
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 6ea7ea6fc1a..1432ead7aa9 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -970,12 +970,12 @@ $CONFIG = array( '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 * issues uploading very large files via the ownCloud Client as upload isn't * 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 |