Skip to content

Commit

Permalink
Merge pull request #778 from svanharmelen/f-fix-conversion-error
Browse files Browse the repository at this point in the history
Fix conversion error
  • Loading branch information
Sander van Harmelen committed Jan 13, 2015
2 parents 9c02a6e + fa1b3c8 commit a78c69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/cloudstack/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
ApiURL: d.Get("api_url").(string),
ApiKey: d.Get("api_key").(string),
SecretKey: d.Get("secret_key").(string),
Timeout: d.Get("timeout").(int64),
Timeout: int64(d.Get("timeout").(int)),
}

return config.NewClient()
Expand Down

0 comments on commit a78c69a

Please sign in to comment.