Have the builder not start and stop, over and over, if not enabled
This commit is contained in:
parent
8e0c1a7d74
commit
be6701b310
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,8 @@ EXTERNALLY_MANAGED = 'external'
|
||||||
def run_build_manager():
|
def run_build_manager():
|
||||||
if not features.BUILD_SUPPORT:
|
if not features.BUILD_SUPPORT:
|
||||||
logger.debug('Building is disabled. Please enable the feature flag')
|
logger.debug('Building is disabled. Please enable the feature flag')
|
||||||
|
while True:
|
||||||
|
time.sleep(1000)
|
||||||
return
|
return
|
||||||
|
|
||||||
build_manager_config = app.config.get('BUILD_MANAGER')
|
build_manager_config = app.config.get('BUILD_MANAGER')
|
||||||
|
|
Reference in a new issue