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
tron.core.service.Service has a repair_callback which calls instances.restore() which calls monitor_task.run().
tron.core.serviceinstance.ServiceInstance has a MonitorTask which calls it's queue() every time it completes.
This results in many warnings 'monitor action already exists' and may lead to other errors. I believe that Server.restore() should only recreate instances, and should let the instance take care of running the monitor on its own.
The text was updated successfully, but these errors were encountered:
tron.core.service.Service
has arepair_callback
which callsinstances.restore()
which callsmonitor_task.run()
.tron.core.serviceinstance.ServiceInstance
has aMonitorTask
which calls it'squeue()
every time it completes.This results in many warnings 'monitor action already exists' and may lead to other errors. I believe that
Server.restore()
should only recreate instances, and should let the instance take care of running the monitor on its own.The text was updated successfully, but these errors were encountered: