2024-01-10 08:32:31 ERROR NameError: global name 'tm' is not definedTraceback (most recent call last): File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/cli/node.py", line 434, in main s(*args) File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/utils.py", line 201, in select R[r]() File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/ctl.py", line 254, in _read h(*packet) File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/ctl.py", line 292, in handle_dump tm.sendto(tm.cache.registry_prefix, '\7%s' % e)
@jm @jhuge
This line is causing this error:
```
2024-01-10 08:32:31 ERROR NameError: global name 'tm' is not defined
Traceback (most recent call last):
File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/cli/node.py", line 434, in main
s(*args)
File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/utils.py", line 201, in select
R[r]()
File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/ctl.py", line 254, in _read
h(*packet)
File "/opt/re6st/eggs/re6stnet-0.623-py2.7.egg/re6st/ctl.py", line 292, in handle_dump
tm.sendto(tm.cache.registry_prefix, '\7%s' % e)
```
We could fix this commit by replacing tm with self.handler. But maybe now we have enough information to fix the unidentified.remove(address) line.
We could fix this commit by replacing `tm` with `self.handler`. But maybe now we have enough information to fix the `unidentified.remove(address)` line.