##// END OF EJS Templates
search-discovery-case: display more information about the interresting case...
marmoute -
r49880:a2bd6b23 default
parent child Browse files
Show More
@@ -147,13 +147,23 b' def interesting_boundary(res):'
147 roundtrips = res["total-roundtrips"]
147 roundtrips = res["total-roundtrips"]
148 if roundtrips <= 1:
148 if roundtrips <= 1:
149 return None
149 return None
150 total_revs = res["nb-revs"]
151 common_revs = res["nb-revs-common"]
152 missing_revs = res["nb-revs-missing"]
150 undecided_common = res["nb-ini_und-common"]
153 undecided_common = res["nb-ini_und-common"]
151 undecided_missing = res["nb-ini_und-missing"]
154 undecided_missing = res["nb-ini_und-missing"]
152 if undecided_common == 0:
155 if undecided_common == 0:
153 return None
156 return None
154 if undecided_missing == 0:
157 if undecided_missing == 0:
155 return None
158 return None
156 return (roundtrips, undecided_common, undecided_missing)
159 return (
160 roundtrips,
161 undecided_common,
162 undecided_missing,
163 total_revs,
164 common_revs,
165 missing_revs,
166 )
157
167
158
168
159 def end(*args, **kwargs):
169 def end(*args, **kwargs):
General Comments 0
You need to be logged in to leave comments. Login now