Plan:
- [X] Tag, Package latest swh.lister v2.9.2 (fix for maven listing) [1]
- [X] Deploy swh.lister
- [X] Restart swh-worker@lister
- [X] Clean up old scheduler entries about wrong listed origins with visit type 'bzr' [2]
- [X] Trigger full listing for sourceforge instance
- [x] D7802: Activate bzr loader in production
- [x] Deploy new swh-worker@loader_bzr
- [ ] Check everything is fine (message consumption, loading, etc...)
[1] i recalled wrongly it was for bzr so ¯\_(ツ)_/¯
[2]
```
update listed_origins set enabled=false where visit_type='bzr' and url like 'http://%.sourceforge.net/bzrroot/%';
```
[3]
```
11:30:26 softwareheritage-scheduler@belvedere:5432=> update task set status='next_run_not_scheduled', next_run=now() where type='list-sourceforge-full';
UPDATE 1
Time: 993.503 ms
11:33:09 softwareheritage-scheduler@belvedere:5432=> select * from task where type in ('list-sourceforge-full', 'list-sourceforge-incremental');
+-----------+------------------------------+----------------------------+-------------------------------+------------------+------------------------+-----------+--------------+----------+
| id | type | arguments | next_run | current_interval | status | policy | retries_left | priority |
+-----------+------------------------------+----------------------------+-------------------------------+------------------+------------------------+-----------+--------------+----------+
| 381572107 | list-sourceforge-full | {"args": [], "kwargs": {}} | 2022-05-10 09:32:07.583825+00 | 90 days | next_run_scheduled | recurring | 0 | (null) |
| 381572406 | list-sourceforge-incremental | {"args": [], "kwargs": {}} | 2022-05-11 13:57:39.486694+00 | 1 day | next_run_not_scheduled | recurring | 0 | (null) |
+-----------+------------------------------+----------------------------+-------------------------------+------------------+------------------------+-----------+--------------+----------+
(2 rows)
Time: 6.011 ms
```