Adding in cancel for a build that is building.
This commit is contained in:
parent
e57eece6c1
commit
fd7c566d31
7 changed files with 120 additions and 16 deletions
2
app.py
2
app.py
|
@ -15,6 +15,7 @@ from werkzeug.routing import BaseConverter
|
|||
import features
|
||||
|
||||
from avatars.avatars import Avatar
|
||||
from buildman.manager.buildcanceller import BuildCanceller
|
||||
from data import database
|
||||
from data import model
|
||||
from data.archivedlogs import LogArchive
|
||||
|
@ -192,6 +193,7 @@ superusers = SuperUserManager(app)
|
|||
signer = Signer(app, config_provider)
|
||||
instance_keys = InstanceKeys(app)
|
||||
label_validator = LabelValidator(app)
|
||||
build_canceller = BuildCanceller(app)
|
||||
|
||||
license_validator = LicenseValidator(config_provider)
|
||||
license_validator.start()
|
||||
|
|
Reference in a new issue