D3230: wireproto: extract HTTP version 2 code to own module

2018-04-11 Thread indygreg (Gregory Szorc)
This revision was automatically updated to reflect the committed changes. Closed by commit rHG93397c4633f6: wireproto: extract HTTP version 2 code to own module (authored by indygreg, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE

D3230: wireproto: extract HTTP version 2 code to own module

2018-04-11 Thread durin42 (Augie Fackler)
durin42 added inline comments. INLINE COMMENTS > httppeer.py:507 > > -url = '%s/api/%s/%s/%s' % (self.url, wireprotoserver.HTTPV2, > permission, > - name) > +url = '%s/api/%s/%s/%s' % (self.url, wireprotov2server.HTTPV2, > +

D3230: wireproto: extract HTTP version 2 code to own module

2018-04-10 Thread indygreg (Gregory Szorc)
indygreg created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY wireprotoserver has generic and version 1 server code. The wireproto module also has both version 1 and version 2 command implementations. Upcoming work I want