diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-10-15 09:56:57 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-10-15 08:08:58 +0000 |
commit | 39381c78a9d8be41660e9da3653c144548b53b16 (patch) | |
tree | 47fb22e0bfc7d7650a3b1d90470b31967daa40cc | |
parent | eaaeb5c9c029cabdea326b8c19008712943bcd8d (diff) | |
download | nextcloud-server-39381c78a9d8be41660e9da3653c144548b53b16.tar.gz nextcloud-server-39381c78a9d8be41660e9da3653c144548b53b16.zip |
Fix background scan doc in config
The background scanner only processes entries with size < 0
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
-rw-r--r-- | config/config.sample.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index ebee3fc210d..0633b94aada 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1954,7 +1954,7 @@ $CONFIG = [ * * By default, a background job runs every 10 minutes and execute a background * scan to sync filesystem and database. Only users with unscanned files - * (size=0 in filecache) are included. Maximum 500 users per job. + * (size < 0 in filecache) are included. Maximum 500 users per job. * * Defaults to ``true`` */ |