Mercurial > public > mercurial-scm > hg
diff mercurial/wireprotoframing.py @ 37723:e8fba6d578f0
wireprotov2: change frame type value for command data
When we dropped the dedicated command argument frame type, this left
a hole in our frame type numbering. Let's start plugging that hole.
The command data frame is now type value 2 instead of 3.
There was limited test fallout because a) we do a good job of using
the constants to refer to frame types b) not many tests are sending
command data frames.
Bumping the media type will be performed in a later commit, once all
type value adjustment has been performed.
Differential Revision: https://phab.mercurial-scm.org/D3383
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 14 Apr 2018 12:11:24 -0700 |
parents | 89a16704114c |
children | deff7cf7eefd |
line wrap: on
line diff
--- a/mercurial/wireprotoframing.py Sat Apr 14 12:07:31 2018 -0700 +++ b/mercurial/wireprotoframing.py Sat Apr 14 12:11:24 2018 -0700 @@ -42,7 +42,7 @@ } FRAME_TYPE_COMMAND_REQUEST = 0x01 -FRAME_TYPE_COMMAND_DATA = 0x03 +FRAME_TYPE_COMMAND_DATA = 0x02 FRAME_TYPE_BYTES_RESPONSE = 0x04 FRAME_TYPE_ERROR_RESPONSE = 0x05 FRAME_TYPE_TEXT_OUTPUT = 0x06