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
# /usr/local/sbin/bundy -v
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib64/python3.6/threading.py", line 916, in _bootstrap_inner
self.run()
File "/usr/lib64/python3.6/threading.py", line 864, in run
self._target(*self._args, **self._kwargs)
File "/usr/local/libexec/bundy/bundy-msgq", line 678, in run
self.run_select()
File "/usr/local/libexec/bundy/bundy-msgq", line 708, in run_select
self.process_accept()
File "/usr/local/libexec/bundy/bundy-msgq", line 332, in process_accept
self.register_socket(newsocket)
File "/usr/local/libexec/bundy/bundy-msgq", line 340, in register_socket
lname = self.newlname()
File "/usr/local/libexec/bundy/bundy-msgq", line 577, in newlname
self.hostname)
TypeError: %x format: an integer is required, not float
The text was updated successfully, but these errors were encountered:
def newlname(self):
"""Generate a unique connection identifier for this socket.
This is done by using an increasing counter and the current
time."""
self.connection_counter += 1
return "%s_%s@%s" % (time.ctime(), float.hex(self.connection_counter),
self.hostname)
The text was updated successfully, but these errors were encountered: