score field was dropped

This commit is contained in:
Mike McLean 2024-06-26 09:56:12 -04:00
parent 6cc8cbd936
commit b54a5f258d
2 changed files with 5 additions and 6 deletions

View file

@ -272,7 +272,7 @@ class RepoWatcher(object):
return check
def wait_request(self, req):
watch_fields = ('score', 'task_id', 'task_state', 'repo_id', 'active', 'tries')
watch_fields = ('task_id', 'task_state', 'repo_id', 'active', 'tries')
self.get_start()
watch_data = dict([(f, req.get(f)) for f in watch_fields])
while True: