-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Feature/implement websockets #356
Conversation
- Create metaclass for the nats transport - Implement backward compatible tcp transport - Implement untested Websocket transport
Just gave it a try, awesome work!
|
it looks like needs to add this to .travis.yml for the tests to run in CI:
|
One of the jobs failed https://app.travis-ci.com/github/nats-io/nats.py/jobs/583496905 because of google/yapf#936. I included a patch for the CI as a workaround to have tests passing. Just need to figure out when transport needs replacement and it looks in a good state to me. |
I wanted to do something like: # figure out required transport for uri
if s.uri.scheme in ("ws", "wss"):
transport = WebSocketTransport()
else:
# use TcpTransport as a fallback
transport = TcpTransport()
if not (type(transport) != type(self._transport)): # noqa: type comparison is safe here
# replace the current transport as it changed
self._transport = transport in Line 1278 in 46915d3
|
Looking at the Go client, when passing the options on
|
Sounds fair, I added a check for that on connect: 7ac8e8e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for this excellent contribution! 🎉
Open points:
Implement and test websockets transport for nats.
Need to review the changes made to the core of nats
nats.py/nats/aio/client.py
Line 1169 in c72de75
nats.py/nats/aio/client.py
Line 1958 in c72de75
nats.py/nats/aio/client.py
Line 1278 in c72de75
Need to figure out what to do when transport needs replacement (i.e. when mixing both ws and nats connections on the server list)
Make tests run
Optional: include aiohttp as a optional dependency, similar to nkeys
Optional: write more tests to test the transport
Here is the test client to test this functionality:
Closes #353
Closes #270