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
I have a docusaurus config with 20+ instances of this plugin with a varying amount of documents for each. On start it errors out.
Error
[ERROR] Error: read ECONNRESET
at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20)
I'm using Constant Sync mode.
Sample of one of the configs:
'docusaurus-plugin-remote-content',
{
// options here
name: 'unique.name',
sourceBaseUrl: 'github.enterprise.url', // some are public github urls
outDir: 'docs/unique.name',
documents: [
'README.md',
'docs/QuickStart.md',
], // most have one or two files and a couple have 15+ files
modifyContent(filename, content) {
// flattening the docs/ files and fixing some urls
}
}
My guess is that this many connections isn't compatible with Constant Sync mode because of the number of connections.
My current work around is to use CLI Sync mode.
The text was updated successfully, but these errors were encountered:
Uh oh, that's not good. Didn't think this would ever be the case, as all documents are fetched at the same time, but I forgot about multiple instances of the plugin. I'll try to add a queue system later this week.
I have a docusaurus config with 20+ instances of this plugin with a varying amount of documents for each. On start it errors out.
Error
I'm using Constant Sync mode.
Sample of one of the configs:
My guess is that this many connections isn't compatible with Constant Sync mode because of the number of connections.
My current work around is to use CLI Sync mode.
The text was updated successfully, but these errors were encountered: