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
the current health-check implementation leaves much room for improvement. it uses netcat to send an _authenticated_ telnet command `getinfo circuit-status`. an alternate could be to use stem, with something like the below
123
+
124
+
```python
125
+
import stem.control
126
+
defis_circuit_built():
127
+
with stem.control.Controller.from_port(port=9051) as controller:
0 commit comments