Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
leostolyarov committed Jun 14, 2018
1 parent 7a45b4c commit c7bd08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_key_vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ func keyVaultRefreshFunc(vaultUri string) resource.StateRefreshFunc {
conn, err := client.Get(vaultUri)
if err != nil {
log.Printf("[DEBUG] Didn't find KeyVault at %q", vaultUri)
return nil, "pending", fmt.Errorf("Error connecting to %q: %s %s", vaultUri, err, conn)
return nil, "pending", fmt.Errorf("Error connecting to %q: %s", vaultUri, err)
}

defer conn.Body.Close()
Expand Down

0 comments on commit c7bd08c

Please sign in to comment.