Merge "Fix index in counter" into stable/train

This commit is contained in:
Zuul 2019-10-16 09:17:38 +00:00 committed by Gerrit Code Review
commit 853573e903
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ class EventsCoordination(object):
index = 0
if events is None:
events = []
for index, e in enumerate(events):
for index, e in enumerate(events, 1):
self._do_low_priority_work(e)
return index