From 0d87e52d2f788009cef228c69c9e177d0906d16a Mon Sep 17 00:00:00 2001 From: mibali <111276665+mibali@users.noreply.github.com> Date: Thu, 2 Jan 2025 13:23:05 +0000 Subject: [PATCH 1/3] Update syncing.mdx --- docs/admin/permissions/syncing.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/admin/permissions/syncing.mdx b/docs/admin/permissions/syncing.mdx index 1d3f2d8e8..90b8f3752 100644 --- a/docs/admin/permissions/syncing.mdx +++ b/docs/admin/permissions/syncing.mdx @@ -253,10 +253,10 @@ scheduled. Default values are shown below: // Don't sync a repo's permissions if it has synced within the last n seconds. "permissions.syncReposBackoffSeconds": 60, // The maximum number of user-centric permissions syncing jobs that can be spawned concurrently. - // Service restart is required to take effect for changes. + // Server restart is required to take effect for changes. "permissions.syncUsersMaxConcurrency": 1, // The maximum number of repo-centric permissions syncing jobs that can be spawned concurrently. - // Service restart is required to take effect for changes. + // Server restart is required to take effect for changes. "permissions.syncReposMaxConcurrency": 5, } ``` From 2d47dc701c43bdc30bb4f1fd2a87c1fa8d4a9ae8 Mon Sep 17 00:00:00 2001 From: Alex Jean-Baptiste Date: Mon, 6 Jan 2025 12:20:11 -0500 Subject: [PATCH 2/3] Adding instructions for prompt library feature flag --- docs/admin/permissions/syncing.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/admin/permissions/syncing.mdx b/docs/admin/permissions/syncing.mdx index 90b8f3752..2cbe5bebd 100644 --- a/docs/admin/permissions/syncing.mdx +++ b/docs/admin/permissions/syncing.mdx @@ -253,10 +253,10 @@ scheduled. Default values are shown below: // Don't sync a repo's permissions if it has synced within the last n seconds. "permissions.syncReposBackoffSeconds": 60, // The maximum number of user-centric permissions syncing jobs that can be spawned concurrently. - // Server restart is required to take effect for changes. + // Server restart is required to changes to take effect. "permissions.syncUsersMaxConcurrency": 1, // The maximum number of repo-centric permissions syncing jobs that can be spawned concurrently. - // Server restart is required to take effect for changes. + // Server restart is required to changes to take effect. "permissions.syncReposMaxConcurrency": 5, } ``` From 4c38e85e40c6933c695be02802c341b238f250a2 Mon Sep 17 00:00:00 2001 From: Alex Jean-Baptiste Date: Mon, 6 Jan 2025 12:21:23 -0500 Subject: [PATCH 3/3] Updated clarity of message --- docs/admin/permissions/syncing.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/admin/permissions/syncing.mdx b/docs/admin/permissions/syncing.mdx index 2cbe5bebd..575f35f4e 100644 --- a/docs/admin/permissions/syncing.mdx +++ b/docs/admin/permissions/syncing.mdx @@ -253,10 +253,10 @@ scheduled. Default values are shown below: // Don't sync a repo's permissions if it has synced within the last n seconds. "permissions.syncReposBackoffSeconds": 60, // The maximum number of user-centric permissions syncing jobs that can be spawned concurrently. - // Server restart is required to changes to take effect. + // Server restart is required for changes to take effect. "permissions.syncUsersMaxConcurrency": 1, // The maximum number of repo-centric permissions syncing jobs that can be spawned concurrently. - // Server restart is required to changes to take effect. + // Server restart is required for changes to take effect. "permissions.syncReposMaxConcurrency": 5, } ```