I have been fixing a few bugs reported on pgsql-bugs. When I tried to add them to the CommitFest, the search in the "Attach thread" dialog could not find their threads.
The reason is that getThreads() in commitfest/ajax.py only looks at pgsql-hackers:
r = _archivesAPI("/list/pgsql-hackers/latest.json", params)
Attaching by exact message id does work for any list. But that field is easy to miss, and you first have to dig the message id out of the archives.
Bug fixes are often posted on pgsql-bugs, so it would help if the search covered that list too. One way is to query pgsql-bugs as well and merge the results by date. The text in the dialog would need a small update.
If this sounds good, I am happy to send a PR.
I have been fixing a few bugs reported on pgsql-bugs. When I tried to add them to the CommitFest, the search in the "Attach thread" dialog could not find their threads.
The reason is that getThreads() in commitfest/ajax.py only looks at pgsql-hackers:
r = _archivesAPI("/list/pgsql-hackers/latest.json", params)
Attaching by exact message id does work for any list. But that field is easy to miss, and you first have to dig the message id out of the archives.
Bug fixes are often posted on pgsql-bugs, so it would help if the search covered that list too. One way is to query pgsql-bugs as well and merge the results by date. The text in the dialog would need a small update.
If this sounds good, I am happy to send a PR.