pulp.constants

pulpcore.constants.TASK_FINAL_STATES = ('skipped', 'completed', 'failed', 'canceled')

Tasks in a final state have finished their work.

pulpcore.constants.TASK_INCOMPLETE_STATES = ('waiting', 'running')

Tasks in an incomplete state have not finished their work yet.

pulpcore.constants.TASK_STATES = namespace(CANCELED='canceled', COMPLETED='completed', FAILED='failed', RUNNING='running', SKIPPED='skipped', WAITING='waiting')

All valid task states.