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
without --stats, the stats dict is not created. There are unguarded accesses to the stats dict that throw exceptions. either the stats dict creation should be unconditional or all the stats dict accesses should be made conditional on args.do_stats.
The text was updated successfully, but these errors were encountered:
Can you provide me with an example commandline where this happens for you? All the normal use-cases work for me.
Reading the code, I realize it can break it with "-o zmq" if not running on a tty -- that's because the zmq mode is intended to be used with stats, but I guess I can silence the output there.
I've pushed a fix on the testing branch. Let me know if that was your problem.
without --stats, the stats dict is not created. There are unguarded accesses to the stats dict that throw exceptions. either the stats dict creation should be unconditional or all the stats dict accesses should be made conditional on args.do_stats.
The text was updated successfully, but these errors were encountered: