Skip to content

Commit c7d9744

Browse files
further wip
1 parent d367d9f commit c7d9744

30 files changed

Lines changed: 2948 additions & 1912 deletions

docs/snippets/schemas/v3/index.schema.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@
4242
},
4343
"maxConnectionSyncJobConcurrency": {
4444
"type": "number",
45-
"description": "The number of connection sync jobs to run concurrently. Defaults to 2.",
45+
"description": "The number of connection sync jobs to run concurrently. Defaults to 8.",
4646
"minimum": 1
4747
},
4848
"maxRepoIndexingJobConcurrency": {
4949
"type": "number",
50-
"description": "The number of repo indexing jobs to run concurrently. Defaults to 2.",
50+
"description": "The number of repo indexing jobs to run concurrently. Defaults to 8.",
5151
"minimum": 1
5252
},
5353
"maxRepoGarbageCollectionJobConcurrency": {
5454
"type": "number",
55-
"description": "The number of repo GC jobs to run concurrently. Defaults to 2.",
55+
"description": "The number of repo GC jobs to run concurrently. Defaults to 8.",
5656
"minimum": 1,
5757
"deprecated": true
5858
},
@@ -96,12 +96,12 @@
9696
},
9797
"maxAccountPermissionSyncJobConcurrency": {
9898
"type": "number",
99-
"description": "The number of account permission sync jobs to run concurrently. Defaults to 2.",
99+
"description": "The number of account permission sync jobs to run concurrently. Defaults to 8.",
100100
"minimum": 1
101101
},
102102
"maxRepoPermissionSyncJobConcurrency": {
103103
"type": "number",
104-
"description": "The number of repo permission sync jobs to run concurrently. Defaults to 2.",
104+
"description": "The number of repo permission sync jobs to run concurrently. Defaults to 8.",
105105
"minimum": 1
106106
}
107107
},
@@ -228,17 +228,17 @@
228228
},
229229
"maxConnectionSyncJobConcurrency": {
230230
"type": "number",
231-
"description": "The number of connection sync jobs to run concurrently. Defaults to 2.",
231+
"description": "The number of connection sync jobs to run concurrently. Defaults to 8.",
232232
"minimum": 1
233233
},
234234
"maxRepoIndexingJobConcurrency": {
235235
"type": "number",
236-
"description": "The number of repo indexing jobs to run concurrently. Defaults to 2.",
236+
"description": "The number of repo indexing jobs to run concurrently. Defaults to 8.",
237237
"minimum": 1
238238
},
239239
"maxRepoGarbageCollectionJobConcurrency": {
240240
"type": "number",
241-
"description": "The number of repo GC jobs to run concurrently. Defaults to 2.",
241+
"description": "The number of repo GC jobs to run concurrently. Defaults to 8.",
242242
"minimum": 1,
243243
"deprecated": true
244244
},
@@ -282,12 +282,12 @@
282282
},
283283
"maxAccountPermissionSyncJobConcurrency": {
284284
"type": "number",
285-
"description": "The number of account permission sync jobs to run concurrently. Defaults to 2.",
285+
"description": "The number of account permission sync jobs to run concurrently. Defaults to 8.",
286286
"minimum": 1
287287
},
288288
"maxRepoPermissionSyncJobConcurrency": {
289289
"type": "number",
290-
"description": "The number of repo permission sync jobs to run concurrently. Defaults to 2.",
290+
"description": "The number of repo permission sync jobs to run concurrently. Defaults to 8.",
291291
"minimum": 1
292292
}
293293
},

packages/backend/src/bitbucket.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ export const getReposForAuthenticatedBitbucketServerUser = async (
755755
* @note This only covers direct user-to-repo grants. It does NOT include users who have access via:
756756
* - Project-level permissions (inherited by all repos in the project)
757757
* - Group membership
758-
* These users will still gain access through account-driven syncing (accountPermissionSyncer).
758+
* These users will still gain access through account-driven permission syncing.
759759
*
760760
* @see https://developer.atlassian.com/server/bitbucket/rest/v906/api-group-repository/#api-rest-api-latest-projects-projectkey-repos-reposlug-permissions-users-get
761761
*/

0 commit comments

Comments
 (0)