Spelling (context)

This commit is contained in:
Rickard von Essen 2017-04-09 20:38:19 +02:00
parent 5ee212c85f
commit a3f70b874b
No known key found for this signature in database
GPG Key ID: E0C0327388876CBA
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func (s *stepShutdown) Run(state multistep.StateBag) multistep.StepAction {
for attempts := 2; attempts > 0; attempts++ { for attempts := 2; attempts > 0; attempts++ {
log.Printf("ShutdownDroplet attempt #%d...", attempts) log.Printf("ShutdownDroplet attempt #%d...", attempts)
_, _, err := client.DropletActions.Shutdown(contect.TODO(), dropletId) _, _, err := client.DropletActions.Shutdown(context.TODO(), dropletId)
if err != nil { if err != nil {
log.Printf("Shutdown retry error: %s", err) log.Printf("Shutdown retry error: %s", err)
} }