##// END OF EJS Templates
wireproto: only expose "between" to version 1 of wire protocols...
Gregory Szorc -
r36633:ed770501 default
parent child Browse files
Show More
@@ -740,9 +740,7 b' def batch(repo, proto, cmds, others):'
740 740
741 741 return bytesresponse(';'.join(res))
742 742
743 # TODO mark as version 1 transport only once interaction with
744 # SSH handshake mechanism is figured out.
745 @wireprotocommand('between', 'pairs')
743 @wireprotocommand('between', 'pairs', transportpolicy=POLICY_V1_ONLY)
746 744 def between(repo, proto, pairs):
747 745 pairs = [decodelist(p, '-') for p in pairs.split(" ")]
748 746 r = []
General Comments 0
You need to be logged in to leave comments. Login now