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
In master branch, the join method is called on the function and not the thread.
tcp_server_loop_thread=threading.Thread(target=tcp_server_loop)
tcp_server_loop_thread.start()
# Running the node until the application is terminated or until first error.try:
node.spin()
exceptKeyboardInterrupt:
tcp_server_loop.join()
ifconnection:
connection.close()
The text was updated successfully, but these errors were encountered:
In master branch, the join method is called on the function and not the thread.
The text was updated successfully, but these errors were encountered: