You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/schemas/src/v3/index.schema.ts
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,12 +25,12 @@ const schema = {
25
25
},
26
26
"resyncConnectionPollingIntervalMs": {
27
27
"type": "number",
28
-
"description": "The polling rate (in milliseconds) at which the db should be checked for connections that need to be re-synced. Defaults to 5 seconds.",
28
+
"description": "The polling rate (in milliseconds) at which the db should be checked for connections that need to be re-synced. Defaults to 1 second.",
29
29
"minimum": 1
30
30
},
31
31
"reindexRepoPollingIntervalMs": {
32
32
"type": "number",
33
-
"description": "The polling rate (in milliseconds) at which the db should be checked for repos that should be re-indexed. Defaults to 5 seconds.",
33
+
"description": "The polling rate (in milliseconds) at which the db should be checked for repos that should be re-indexed. Defaults to 1 second.",
34
34
"minimum": 1
35
35
},
36
36
"maxConnectionSyncJobConcurrency": {
@@ -50,11 +50,13 @@ const schema = {
50
50
},
51
51
"repoGarbageCollectionGracePeriodMs": {
52
52
"type": "number",
53
-
"description": "The grace period (in milliseconds) for garbage collection. Used to prevent deleting shards while they're being loaded."
53
+
"description": "The grace period (in milliseconds) for garbage collection. Used to prevent deleting shards while they're being loaded. Defaults to 10 seconds.",
54
+
"minimum": 1
54
55
},
55
56
"repoIndexTimeoutMs": {
56
57
"type": "number",
57
-
"description": "The timeout (in milliseconds) for a repo indexing to timeout."
58
+
"description": "The timeout (in milliseconds) for a repo indexing to timeout. Defaults to 2 hours.",
0 commit comments