From 5ffbbb902b504a8d4c15ca7aa593562e095ce483 Mon Sep 17 00:00:00 2001 From: Josh Date: Fri, 30 May 2025 11:13:41 -0400 Subject: [PATCH] fix(admin): Update Desktop client config interval default values * Updated `notificationRefreshInterval` default interval value (was changed in nextcloud/desktop#4426 * Added sec / min / hr equivalents for quickly referencing by those that don't deal in msec (similar to what we do for bytes->MB). Signed-off-by: Josh --- admin_manual/desktop/configfile.rst | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/admin_manual/desktop/configfile.rst b/admin_manual/desktop/configfile.rst index 89ffbfd5f..73692bffe 100644 --- a/admin_manual/desktop/configfile.rst +++ b/admin_manual/desktop/configfile.rst @@ -22,19 +22,19 @@ format. You can overwrite changes using the Nextcloud configuration dialog. Some interesting values that can be set on the configuration file are: -+----------------------------------------------------------------------------------------------------------------------------------------------------------+ -| ``[Nextcloud]`` section | -+=================================+===============+========================================================================================================+ -| Variable | Default | Meaning | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``remotePollInterval`` | ``30000`` | Specifies the poll time for the remote repository in milliseconds. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``forceSyncInterval`` | ``7200000`` | The duration of no activity after which a synchronization run shall be triggered automatically. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``fullLocalDiscoveryInterval`` | ``3600000`` | The interval after which the next synchronization will perform a full local discovery. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ -| ``notificationRefreshInterval`` | ``300000`` | Specifies the default interval of checking for new server notifications in milliseconds. | -+---------------------------------+---------------+--------------------------------------------------------------------------------------------------------+ ++---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| ``[Nextcloud]`` section | ++=================================+====================+========================================================================================================+ +| Variable | Default | Meaning | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``remotePollInterval`` | ``30000`` (30 sec) | Specifies the poll time for the remote repository in milliseconds. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``forceSyncInterval`` | ``7200000`` (2 hr) | The duration of no activity after which a synchronization run shall be triggered automatically. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``fullLocalDiscoveryInterval`` | ``3600000`` (1 hr) | The interval after which the next synchronization will perform a full local discovery. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +| ``notificationRefreshInterval`` | ``60000`` (1 min) | Specifies the default interval of checking for new server notifications in milliseconds. | ++---------------------------------+--------------------+--------------------------------------------------------------------------------------------------------+ +----------------------------------------------------------------------------------------------------------------------------------------------------------------------+