You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following two test programs, which look to me like they should behave the same:
$ cat both.py
from stem.control import Controller
with Controller.from_port() as controller:
print("Authenticating...")
controller.authenticate()
print("Tor is running version %s" % controller.get_version())
$ cat only-1.8.0.py
from stem.control import Controller
controller = Controller.from_port()
print("Authenticating...")
controller.authenticate()
print("Tor is running version %s" % controller.get_version())
With Stem 1.8.0, they both work as expected:
$ python3 both.py
Authenticating...
Tor is running version 0.4.5.11
$ python3 only-1.8.0.py
Authenticating...
Tor is running version 0.4.5.11
With Stem master branch (commit hash 4ead96c), one of them works as expected...
$ python3 both.py
Authenticating...
Tor is running version 0.4.5.11
...but the other one hangs at controller.authenticate() without exiting:
$ python3 only-1.8.0.py
Authenticating...
It's not clear to me why Stem master causes these two programs to behave differently. I assume it's a Stem bug, since both of these programs seem like they should work, and it's definitely a breaking change from 1.8.0.
Any ideas?
The text was updated successfully, but these errors were encountered:
I have the following two test programs, which look to me like they should behave the same:
With Stem 1.8.0, they both work as expected:
With Stem master branch (commit hash 4ead96c), one of them works as expected...
...but the other one hangs at
controller.authenticate()
without exiting:It's not clear to me why Stem master causes these two programs to behave differently. I assume it's a Stem bug, since both of these programs seem like they should work, and it's definitely a breaking change from 1.8.0.
Any ideas?
The text was updated successfully, but these errors were encountered: