We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given the following code snippet:
gun:open(Host, Port, #{}) gun:ws_upgrade(Pid, Url, [], #{keepalive=> infinity})
The keepalive continues to use the default value, and a keepalive is sent after 5 seconds.
The following correctly sets the keepalive value:
gun:open(Host, Port, #{ws_opts => #{keepalive => infinity}}) gun:ws_upgrade(Pid, Url, [], #{})
The text was updated successfully, but these errors were encountered:
This is linked (conceptually) to handling of keepalive in tunnels. I'll leave it for after 2.0 as it is not a small change.
Sorry, something went wrong.
No branches or pull requests
Given the following code snippet:
The keepalive continues to use the default value, and a keepalive is sent after 5 seconds.
The following correctly sets the keepalive value:
The text was updated successfully, but these errors were encountered: