Skip to content

Commit

Permalink
fix(NextcloudBookmarks): Try to avoid draining Chrome's socket pool
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Aug 3, 2024
1 parent 222d621 commit 727fbbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/adapters/NextcloudBookmarks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default class NextcloudBookmarksAdapter implements Adapter, BulkImportRes

constructor(server: NextcloudBookmarksConfig) {
this.server = server
this.fetchQueue = new PQueue({ concurrency: 12 })
this.fetchQueue = new PQueue({ concurrency: 2 })
this.bookmarkLock = new AsyncLock()
this.abortController = new AbortController()
this.abortSignal = this.abortController.signal
Expand Down

0 comments on commit 727fbbb

Please sign in to comment.