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 would like to be able to pass a thread name to the KiteTicker.connect() function in order to disambiguate output to the logging module when including thread names in log formatters. I am happy to make the changes myself, but would like to know if they could be merge in if I do.
Thanks!
The text was updated successfully, but these errors were encountered:
Another option, and arguably the better solution, would be to enable setting opts["installSignalHandlers"]=False when the function is called without threaded=True.
As of right now, you cannot call KiteTicker.connect() inside of a thread you have already spawned as a result of the signal handlers.
Instead you have to call it with the threaded=True argument, causing two threads to be spawned when only on is really needed.
Hello,
I would like to be able to pass a thread name to the KiteTicker.connect() function in order to disambiguate output to the logging module when including thread names in log formatters. I am happy to make the changes myself, but would like to know if they could be merge in if I do.
Thanks!
The text was updated successfully, but these errors were encountered: