Missing option causes spin-appliance to fail.
it was omitted because spin-appliance is deprecated
Yes, but it is now failing on any call of this method. So, spin-appliance is completely unusable. Options: 1) this PR 2) remove spin-appliance completely.
Option 3: don't require this option in _build_image:
@@ -5860,7 +5860,8 @@ def _build_image(options, task_opts, session, args, img_type): print hub_opts = {} - hub_opts['optional_arches'] = task_opts.optional_arches.split(',') + if hasattr(task_opts, 'optional_arches'): + hub_opts['optional_arches'] = task_opts.optional_arches.split(',') passthru_opts = [ 'format', 'install_tree_url', 'isoname', 'ksurl', 'ksversion', 'release', 'repo', 'scratch', 'skip_tag',
Looks good - PR changed to this.
11 new commits added
rebased
Pull-Request has been merged by mikem
Missing option causes spin-appliance to fail.