Clean up ping list

There are a number of people who are no longer active on OpenStack
and/or Oslo that are still being courtesy pinged for meetings.
Let's stop doing that.

This is probably not a complete cleanup, but it's a step in the
right direction.

Change-Id: I719b4ad605b52005394f823650230b906e7dbd13
This commit is contained in:
Ben Nemec 2018-04-02 20:45:13 +00:00
parent 559aee6cd7
commit 18c2ead0ee
1 changed files with 5 additions and 6 deletions

View File

@ -18,15 +18,14 @@ import collections
import sys
NOTIFY_PEPS = [
'GheRivero', 'amotoki', 'amrith', 'ansmith', 'bknudson', 'bnemec',
'amotoki', 'amrith', 'ansmith', 'bnemec',
'dansmith', 'dhellmann', 'dims', 'dougwig', 'e0ne', 'flaper87',
'garyk', 'haypo', 'electrocucaracha', 'jd__', 'jecarey',
'garyk', 'haypo', 'electrocucaracha', 'jd__',
'johnsom', 'jungleboyj', 'kgiusti', 'kragniz', 'lhx_',
'lifeless', 'lxsli', 'ozamiatin', 'raildo', 'redrobot', 'crushil',
'rpodolyaka', 'spamaps', 'sergmelikyan',
'raildo', 'redrobot', 'spamaps',
'sileht', 'sreshetnyak', 'stevemar', 'therve', 'thinrichs',
'toabctl', 'viktors', 'zhiyan', 'zzzeek', 'gcb',
'Nakato', 'rbradfor', 'zxy',
'toabctl', 'zhiyan', 'zzzeek', 'gcb',
'zxy',
]
NOTIFY_PEPS = sorted(NOTIFY_PEPS, key=str.lower)
NUM_PER_LINE = 7