##// END OF EJS Templates
discovery: properly exclude locally known but filtered heads...
Pierre-Yves David -
r23975:3b7088a5 stable
parent child Browse files
Show More
@@ -946,8 +946,9 b' def _pulldiscoverychangegroup(pullop):'
946 946 scommon = set(common)
947 947 filteredrheads = []
948 948 for n in rheads:
949 if n in nm and n not in scommon:
950 common.append(n)
949 if n in nm:
950 if n not in scommon:
951 common.append(n)
951 952 else:
952 953 filteredrheads.append(n)
953 954 if not filteredrheads:
@@ -520,7 +520,7 b' Both have new stuff in existing named br'
520 520 "GET /?cmd=heads HTTP/1.1" 200 -
521 521 "GET /?cmd=branches HTTP/1.1" 200 - x-hgarg-1:nodes=d8f638ac69e9ae8dea4f09f11d696546a912d961
522 522 "GET /?cmd=between HTTP/1.1" 200 - x-hgarg-1:pairs=d8f638ac69e9ae8dea4f09f11d696546a912d961-d57206cc072a18317c1e381fb60aa31bd3401785
523 "GET /?cmd=changegroupsubset HTTP/1.1" 200 - x-hgarg-1:bases=d8f638ac69e9ae8dea4f09f11d696546a912d961&heads=d8f638ac69e9ae8dea4f09f11d696546a912d961+2c8d5d5ec612be65cdfdeac78b7662ab1696324a
523 "GET /?cmd=changegroupsubset HTTP/1.1" 200 - x-hgarg-1:bases=d8f638ac69e9ae8dea4f09f11d696546a912d961&heads=d8f638ac69e9ae8dea4f09f11d696546a912d961
524 524 "GET /?cmd=listkeys HTTP/1.1" 200 - x-hgarg-1:namespace=phases
525 525 "GET /?cmd=capabilities HTTP/1.1" 200 -
526 526 "GET /?cmd=heads HTTP/1.1" 200 -
General Comments 0
You need to be logged in to leave comments. Login now