Replies: 1 comment 4 replies
-
I don't really understand how I can help with this. Not sure what argument in the client request you want to use to decide which of the servers to connect to, but this is something that you would implement in a proxy server such as nginx, as this package does not have any routing/redirecting capabilities. It's not designed for that. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, I have a system where if the client is connecting from UI the socket server which is running is WSGI.
In python2.7 using from socketio import SocketIOServer
Now I just want to integrate this with python-socketio ASGI. Is there a way we can redirect the connection from a client to the new server of ASGI?
I need the old server and also a new one to compare/test/two switches from one to another if required.
I don't have control of client connections to change their host and port. Want the client connection to trigger the new server with ASGI. Is there a way for it ?
Beta Was this translation helpful? Give feedback.
All reactions