Skip to content

Commit ef99946

Browse files
committed
Fixed a bug in the handling of checks failures.
- Legacy-Id: 14477
1 parent 5cf87e0 commit ef99946

2 files changed

Lines changed: 31 additions & 5 deletions

File tree

bin/test-crawl

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -322,15 +322,14 @@ if __name__ == "__main__":
322322
for i in range(len(error_list)):
323323
if error_list[i].id in settings.SILENCED_SYSTEM_CHECKS:
324324
silenced.append(i)
325-
silenced.sort(reverse=True)
326-
for i in silenced:
327-
del error_list[i]
325+
silenced.sort(reverse=True)
326+
for i in silenced:
327+
del error_list[i]
328328
if error_list:
329329
print("")
330330
for entry in error_list:
331331
print(entry)
332-
sys.exit(1)
333-
332+
334333
while urls:
335334
if args.random:
336335
# popitem() is documented to be random, but really isn't

changelog

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
ietfdb (6.68.2) ietf; urgency=medium
2+
3+
This is a bugfix release, with minor fixes as follows:
4+
5+
* Added a patch for django issue #28772, a checks action to apply the
6+
patch, and a setting that lists patches to be applied.
7+
8+
* With a validator in place for document names (introduced some time ago)
9+
we will not get any new documents with invalid name strings, so we can go
10+
back to a simpler regexp for document name urls.
11+
12+
* Removed code that has been marked unreachable for more than 5 months.
13+
14+
* Added user notification about ballots closed automatically when
15+
creating a new ballot.
16+
17+
* Merged in [14467] from housley@vigilsec.com:
18+
Close any previous ballots when a charter goes to Internal Review or
19+
Extrernal Review. Fixes #2421.
20+
21+
* Merged in [14466] from rjsparks@nostrum.com:
22+
Include information about previous team reviews in assignement emails.
23+
Fixes #2392.
24+
25+
-- Henrik Levkowetz <henrik@levkowetz.com> 29 Dec 2017 16:40:28 -0800
26+
27+
128
ietfdb (6.68.1) ietf; urgency=medium
229

330
This is a bugfix release, with a number of minor fixes, as follows:

0 commit comments

Comments
 (0)