From f42d81e5b951574dc8a3fa0fc97e5f7b988f8e0a Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Wed, 6 Mar 2024 10:29:36 +0100 Subject: [PATCH] Large Scale SIG now meets monthly Switch scheduling to monthly without rotation, following the discussion at the March 6 meeting. Also allow dots in IRC usernames so that Felix does not trigger the typo police. Change-Id: I0f88241560e887362f990dd2dc808732cdeca515 --- meetings/large-scale-sig-meeting.yaml | 11 +++-------- tools/check_chair.py | 2 +- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/meetings/large-scale-sig-meeting.yaml b/meetings/large-scale-sig-meeting.yaml index 19190773..1f97b502 100644 --- a/meetings/large-scale-sig-meeting.yaml +++ b/meetings/large-scale-sig-meeting.yaml @@ -2,18 +2,13 @@ project: Large Scale SIG Meeting meeting_id: large_scale_sig agenda_url: https://etherpad.openstack.org/p/large-scale-sig-meeting schedule: - - time: '1600' - day: Wednesday - irc: openstack-operators - frequency: quadweekly - start_date: 20231129 - time: '0900' day: Wednesday irc: openstack-operators - frequency: quadweekly-alternate - start_date: 20240110 + frequency: fourth-wednesday + start_date: 20240327 chair: > - Thierry Carrez (ttx), Kristin Barrientos (kbarrientos) + Thierry Carrez (ttx), Arnaud Morin (amorin), Felix Huettner (felix.huettner) description: > Facilitating the scaling journey of OpenStack operators since 2019! Please join the Large Scale SIG meeting if you are interested in helping OpenStack diff --git a/tools/check_chair.py b/tools/check_chair.py index f6e8e230..acddbade 100644 --- a/tools/check_chair.py +++ b/tools/check_chair.py @@ -33,7 +33,7 @@ def check_chair(chair): msg = '' for chair in chairs: chair = chair.rstrip().lstrip() - ok = bool(re.match(r"^[\w '.-]+\([\w\d_-]+\)$", chair)) + ok = bool(re.match(r"^[\w '.-]+\([\w\d_\.-]+\)$", chair)) all_good &= ok msg += "\t%s: %s\n" % (chair, BOOL_STR[ok])