Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a section about brave browser web socket setting #1186

Merged
merged 6 commits into from
Aug 8, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions projects/landing-page/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,41 @@ const App: React.FunctionComponent = () => {
</SectionRef>
</CardProject>
</Section>
<Section>
<SectionHeading id="troubleshooting" prefix="9">
Brave browser web-sockets issue
wirednkod marked this conversation as resolved.
Show resolved Hide resolved
</SectionHeading>
<SectionText>
As of <b>Brave v1.36</b>, extensions and web pages are limited to
a maximum of 10 active web socket connections(More details
wirednkod marked this conversation as resolved.
Show resolved Hide resolved
concerning this change can be found at the
<a
href="https://github.com/brave/brave-browser/issues/19990"
target="_blank"
rel="noreferrer"
>
{" "}
respective repository{" "}
</a>
of Brave browser).
</SectionText>
<SectionText>
If an issue is identified concerning web sockets, this setting can
wirednkod marked this conversation as resolved.
Show resolved Hide resolved
be disabled following the next steps:
<ol>
<li>
Visit the brave settings (paste{" "}
<i>brave://flags/#restrict-websockets-pool</i> in a new tab);
</li>
<li>
Locate the setting: <b>Restrict WebSockets pool</b>;
</li>
<li>Switch the setting to `Disabled`;</li>
<li>Relaunch the browser.</li>
</ol>
</SectionText>
</Section>

<ThemeProvider theme={createTheme(dark)}>
<Section pt={5} pb={5}>
{/* TODO: Playground */}
Expand Down Expand Up @@ -408,6 +443,9 @@ const App: React.FunctionComponent = () => {
<SidebarLink href="#api-docs">API Documentation</SidebarLink>
<SidebarLink href="#extension">Browser Extension</SidebarLink>
<SidebarLink href="#projects">Projects</SidebarLink>
<SidebarLink href="#troubleshooting">
Brave browser web-sockets issue
wirednkod marked this conversation as resolved.
Show resolved Hide resolved
</SidebarLink>
</Sidebar>
</UIContainer>
</ThemeProvider>
Expand Down