# HG changeset patch # User Gregory Szorc # Date 2018-10-05 16:23:06 # Node ID cfeba1aafb9d65cee7079b059047a8488e30b889 # Parent 762ef19a07e3cebd307845af92158b24df187313 wireprotov2: handle noop action This action can be returned from the client reactor. We should handle it. Differential Revision: https://phab.mercurial-scm.org/D4923 diff --git a/mercurial/wireprotov2peer.py b/mercurial/wireprotov2peer.py --- a/mercurial/wireprotov2peer.py +++ b/mercurial/wireprotov2peer.py @@ -325,6 +325,8 @@ class clienthandler(object): raise e return + elif action == 'noop': + return if frame.requestid not in self._requests: raise error.ProgrammingError(