##// 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 147 roundtrips = res["total-roundtrips"]
148 148 if roundtrips <= 1:
149 149 return None
150 total_revs = res["nb-revs"]
151 common_revs = res["nb-revs-common"]
152 missing_revs = res["nb-revs-missing"]
150 153 undecided_common = res["nb-ini_und-common"]
151 154 undecided_missing = res["nb-ini_und-missing"]
152 155 if undecided_common == 0:
153 156 return None
154 157 if undecided_missing == 0:
155 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 169 def end(*args, **kwargs):
General Comments 0
You need to be logged in to leave comments. Login now