Merge lp://staging/~james-w/udd/management-commands into lp://staging/udd
Status: | Work in progress |
---|---|
Proposed branch: | lp://staging/~james-w/udd/management-commands |
Merge into: | lp://staging/udd |
Prerequisite: | lp://staging/~james-w/udd/drop_email_failures |
Diff against target: |
404 lines (+246/-38) 16 files modified
bin/delete-revids (+7/-0) django_project/settings.py (+1/-0) udd/foreach/management/commands/add_import_jobs.py (+8/-0) udd/foreach/management/commands/analyze_log.py (+10/-0) udd/foreach/management/commands/categorise-failures.py (+8/-0) udd/foreach/management/commands/count_outstanding_jobs.py (+8/-0) udd/foreach/management/commands/graph_failures.py (+8/-0) udd/foreach/management/commands/list_packages.py (+8/-0) udd/foreach/management/commands/logrotate.py (+8/-0) udd/foreach/management/commands/mass_import.py (+8/-0) udd/foreach/management/commands/requeue_package.py (+17/-0) udd/foreach/management/commands/show_failure.py (+8/-0) udd/models.py (+70/-0) udd/scripts/delete_revids.py (+49/-0) udd/scripts/requeue_package.py (+23/-37) udd/scripts/show_failure.py (+5/-1) |
To merge this branch: | bzr merge lp://staging/~james-w/udd/management-commands |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Ubuntu Distributed Development Developers | Pending | ||
Review via email:
|
Description of the change
Hi,
This branch adds management commands for anything that works at the
mass-import level. (Anything at the import-package level isn't converted
here as it's not needing to be generalised.)
The commands won't run without PYTHONPATH, but I think that matches the
current behaviour of scripts in bin/?
Thanks,
James
Unmerged revisions
- 561. By James Westby
-
Merged drop_email_failures into management-
commands. - 560. By James Westby
-
Merged drop_email_failures into management-
commands. - 559. By James Westby
-
Move the deletion of revids in to another script.
It's import-package specific, so it doesn't really belong in the
requeue script. - 558. By James Westby
-
Add management commands for the things that touch the db.
- 557. By James Westby
-
Drop it from the crontab too.
- 556. By James Westby
-
Drop email_failures as it isn't used.