Skip to content

Commit

Permalink
Remove unnecessary --interactive flag
Browse files Browse the repository at this point in the history
Per @achanda, this was added [accidentally](b92546a#commitcomment-16750062).
  • Loading branch information
blalor committed Mar 17, 2016
1 parent a93f96a commit f7023a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/driver/rkt.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (d *RktDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, e
insecure = true
}

cmdArgs = append(cmdArgs, "run", "--interactive")
cmdArgs = append(cmdArgs, "run")
cmdArgs = append(cmdArgs, fmt.Sprintf("--volume=%s,kind=host,source=%s", task.Name, ctx.AllocDir.SharedDir))
cmdArgs = append(cmdArgs, fmt.Sprintf("--mount=volume=%s,target=%s", task.Name, ctx.AllocDir.SharedDir))
cmdArgs = append(cmdArgs, img)
Expand Down

0 comments on commit f7023a3

Please sign in to comment.