Fix NPE bug in RAC worker

We need to return `None`, not `0` if there are no additional repositories to measure
This commit is contained in:
Joseph Schorr 2017-04-11 15:37:46 -04:00
parent e47ac22012
commit 80693d6b8c
3 changed files with 9 additions and 5 deletions

View file

@ -7,4 +7,7 @@ def test_repositoryactioncount(app):
database.RepositorySearchScore.delete().execute()
rac = RepositoryActionCountWorker()
rac._count_repository_actions()
while rac._count_repository_actions():
continue