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
Since Python 2.7, xmlrpclib.Transport has a close method and a connection retry (https://github.com/python/cpython/blob/2.7/Lib/xmlrpclib.py#L1277) when a persistent connection gets closed. The way SupervisorTransport overrides the class breaks this feature. This could be fixed by reducing the amount of overrides in SupervisorTransport to get the base class behavior or by implementing the close method.