Skip to content

Commit

Permalink
update deli-cli library
Browse files Browse the repository at this point in the history
  • Loading branch information
rmb938 committed Feb 9, 2018
1 parent 144b30c commit f4cb7c2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
26 changes: 14 additions & 12 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import:
- package: github.com/mitchellh/multistep
version: 391576a156a54cfbb4cf5d5eda40cf6ffa3e3a4d
- package: github.com/sandwichcloud/deli-cli
version: 0.0.23
version: 0.0.24
2 changes: 1 addition & 1 deletion sandwich/step_run_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func (s *StepRunInstance) Run(state multistep.StateBag) multistep.StepAction {
s.Tags = make(map[string]string)
}

instance, err := instanceClient.Create(s.Name, s.SourceImageID, config.RegionID, "", s.NetworkID, "", s.FlavorID, s.Disk, keyPairIDs, s.Tags, s.UserData)
instance, err := instanceClient.Create(s.Name, s.SourceImageID, config.RegionID, "", s.NetworkID, "", s.FlavorID, s.Disk, keyPairIDs, []api.InstanceInitialVolume{}, s.Tags, s.UserData)
if err != nil {
err := fmt.Errorf("Error creating source instance: %s", err)
state.Put("error", err)
Expand Down

0 comments on commit f4cb7c2

Please sign in to comment.