You can disable peer status messages with asyncoro.AsynCoro.instance().peer_status(None), or if you already have scheduler, with scheduler.peer_status(None).
You can have at most one coroutine registered to receive peer status messages. Current status coroutine can relay these messages to other coroutines if necessary; see discoro_client2.py example where status_coro relays messages to rcoro_scheduler and httpd.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
Questions about peer_status method:
Thanks!
asyncoro.AsynCoro.instance().peer_status(None), or if you already have scheduler, withscheduler.peer_status(None).discoro_client2.pyexample wherestatus_cororelays messages torcoro_schedulerandhttpd.