Enable task_always_eager for local builds

This commit is contained in:
Qixiang Wan
2019-12-10 10:40:00 +08:00
committed by mprahl
parent ab0b513562
commit 0a9dfe36f9

View File

@@ -133,6 +133,9 @@ class LocalBuildConfiguration(BaseConfiguration):
RPMS_ALLOW_REPOSITORY = True
MODULES_ALLOW_REPOSITORY = True
# Celery tasks will be executed locally for local builds
CELERY_TASK_ALWAYS_EAGER = True
class OfflineLocalBuildConfiguration(LocalBuildConfiguration):
RESOLVER = "local"