Author: sebb Date: Sun Jul 6 14:22:34 2025 New Revision: 1927007 URL: http://svn.apache.org/viewvc?rev=1927007&view=rev Log: Add epoch to reportingcycles.json
Modified: comdev/reporter.apache.org/trunk/scripts/committee_info.py Modified: comdev/reporter.apache.org/trunk/scripts/committee_info.py URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/scripts/committee_info.py?rev=1927007&r1=1927006&r2=1927007&view=diff ============================================================================== --- comdev/reporter.apache.org/trunk/scripts/committee_info.py (original) +++ comdev/reporter.apache.org/trunk/scripts/committee_info.py Sun Jul 6 14:22:34 2025 @@ -165,7 +165,9 @@ def cycles(): c = committees[ctte] if not c['pmc']: continue - report_cycles[ctte] = c['report'] + # prefix cycles with next epoch + report_cycles[ctte] = [c['nextMeetingEpoch']] + report_cycles[ctte].extend(c['report']) # Duplicate some entries for now so the code can find them (the existing json has the duplicates) if ctte == 'ws': # Special processing report_cycles['webservices'] = report_cycles[ctte]