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
The protocol format of ws is no longer supported. Router configs need to be updated to use wss instead.
ws
wss
In router.yml there is a listener line with ws hardcoded, it needs to be updated to wss.
router.yml
{{ if .Router.IsFabric }}#{{ end }} address: {{ if .Router.IsWss }}ws{{ else }}tls{{end}}:0.0.0.0:{{ .Router.Edge.Port }}
Due to this, when starting a WSS router the following error will appear.
FATAL fabric/router.(*Router).startXgressListeners: error listening [edge] (transport.ws not supported. use transport.wss)
The text was updated successfully, but these errors were encountered:
Adding changelog for issue #1132
ada9d8f
Signed-off-by: gberl002 <[email protected]>
Merge pull request #1134 from openziti/issue1132-changelog
74c3c3f
Convert transit routers to use raft commands. Fixes #1132
4ce51b2
Merge pull request #1136 from openziti/raft-transit-routers
7b7b43d
Successfully merging a pull request may close this issue.
The protocol format of
ws
is no longer supported. Router configs need to be updated to usewss
instead.In
router.yml
there is a listener line withws
hardcoded, it needs to be updated towss
.Due to this, when starting a WSS router the following error will appear.
The text was updated successfully, but these errors were encountered: