comparison tests/wireprotohelpers.sh @ 37725:3ea8323d6f95

wireprotov2: change command response protocol to include a leading map The error handling mechanism for the new wire protocol isn't very well-defined. This commit takes us a step in the right direction by introducing a leading CBOR map for command responses. This map will contain an overall result of the command. Currently, the map indicates whether the command was overall successful or if an error occurred. And if an error occurred, that error is present in the map. There is still a dedicated error frame. My intent is to use that for protocol-level errors and for errors that are encountered after the initial response frame has been sent. This will be clarified in a later commit. Differential Revision: https://phab.mercurial-scm.org/D3385
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 14 Apr 2018 15:19:36 -0700
parents 89a16704114c
children 8acd3a9ac4fd
comparison
equal deleted inserted replaced
37724:deff7cf7eefd 37725:3ea8323d6f95
1 HTTPV2=exp-http-v2-0001 1 HTTPV2=exp-http-v2-0001
2 MEDIATYPE=application/mercurial-exp-framing-0004 2 MEDIATYPE=application/mercurial-exp-framing-0005
3 3
4 sendhttpraw() { 4 sendhttpraw() {
5 hg --verbose debugwireproto --peer raw http://$LOCALIP:$HGPORT/ 5 hg --verbose debugwireproto --peer raw http://$LOCALIP:$HGPORT/
6 } 6 }
7 7