prevent failure for meta: reset_connection

now plugins that don't explicitly support it give a warning.
pull/22883/head
Brian Coca 8 years ago
parent bbc6af6749
commit 9ad62a48ab

@ -278,3 +278,6 @@ class ConnectionBase(with_metaclass(ABCMeta, object)):
f = self._play_context.connection_lockfd
fcntl.lockf(f, fcntl.LOCK_UN)
display.vvvv('CONNECTION: pid %d released lock on %d' % (os.getpid(), f), host=self._play_context.remote_addr)
def reset(self):
display.warning("Reset is not implemented for this connection")

Loading…
Cancel
Save