Merge pull request #6763 from chhaj5236/fix/invalid_type_convert

fix type error in step_create_tags
pull/6768/head
zhuzhih2017 8 years ago committed by GitHub
commit f59cde03c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,7 +14,7 @@ type stepCreateTags struct {
}
func (s *stepCreateTags) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
config := state.Get("config").(Config)
config := state.Get("config").(*Config)
client := state.Get("client").(*ecs.Client)
ui := state.Get("ui").(packer.Ui)
imageId := state.Get("alicloudimage").(string)

Loading…
Cancel
Save