-
Notifications
You must be signed in to change notification settings - Fork 414
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
Multiple debugging session with voltron #275
Comments
I think that with a few modifications it can be done (please, correct me if I'm missing something): First, the server (in the debugger) must choose a random port (tcp) or random domain (unix): Lines 162 to 171 in 0b7a2fb
We could say "if you choose a port == 0 in the configuration, voltron will pick a random one for you". Something similar for the domain like "if the domain ends in a -, voltron will add a random postfix to it". Then we should let the user know which port/domain was chosen: Line 108 in 0b7a2fb
The client side is a little more complex. First, we should add a parameter to the views to change the port/domain. Lines 148 to 153 in 0b7a2fb
Now, the problem is that the Line 166 in 0b7a2fb
The simplest solution (but not human friendly) would create a parameter to change not the port/domain but the Any thoughts? If there is interest on this I could write a PR. |
Can we have a feature that support for multiple debugging session with voltron?
I suggest that we can choose a port randomly for Flask, and tell to voltron view client which one it needs to connect to
The text was updated successfully, but these errors were encountered: