Move channel back, as it is referenced by generate_cloud_config
This commit is contained in:
parent
46ea7ce2ed
commit
1173192739
1 changed files with 2 additions and 2 deletions
|
@ -111,14 +111,14 @@ class EC2Executor(BuilderExecutor):
|
|||
@coroutine
|
||||
def start_builder(self, realm, token, build_uuid):
|
||||
region = self.executor_config['EC2_REGION']
|
||||
channel = self.executor_config.get('COREOS_CHANNEL', 'stable')
|
||||
|
||||
coreos_ami = self.executor_config.get('COREOS_AMI', None)
|
||||
if coreos_ami is None:
|
||||
channel = self.executor_config.get('COREOS_CHANNEL', 'stable')
|
||||
get_ami_callable = partial(self._get_coreos_ami, region, channel)
|
||||
coreos_ami = yield From(self._loop.run_in_executor(None, get_ami_callable))
|
||||
|
||||
user_data = self.generate_cloud_config(realm, token, channel, self.manager_hostname)
|
||||
|
||||
logger.debug('Generated cloud config: %s', user_data)
|
||||
|
||||
ec2_conn = self._get_conn()
|
||||
|
|
Reference in a new issue