Small logging fix in rkt/driver

This commit is contained in:
Lasse Dalegaard 2017-09-26 19:36:13 +02:00
parent 3d25fd3b00
commit 5e9e2b07bd
1 changed files with 1 additions and 1 deletions

View File

@ -590,7 +590,7 @@ func (d *RktDriver) Start(ctx *ExecContext, task *structs.Task) (*StartResponse,
}
go h.run()
d.logger.Printf("[DEBUG] driver.rkt: retrieving status for pod %q (UUID %s) for task %q with", img, uuid, d.taskName)
d.logger.Printf("[DEBUG] driver.rkt: retrieving status for pod %q (UUID %s) for task %q", img, uuid, d.taskName)
deadline := time.Now().Add(rktNetworkDeadline)
var driverNetwork *cstructs.DriverNetwork
networkLoop: