replace task manager with event driven scheduler

This commit is contained in:
Chris Meyers
2016-09-22 11:20:24 -04:00
parent cc90204b0f
commit cdb65ccac9
12 changed files with 344 additions and 456 deletions

View File

@@ -1,5 +1,12 @@
from awx.main.models import * # noqa
from awx.main.models import (
Job,
AdHocCommand,
InventoryUpdate,
ProjectUpdate,
WorkflowJob,
SystemJob,
)
class SimpleDAG(object):
''' A simple implementation of a directed acyclic graph '''