1
0
Fork 0

feat: remove default timeout

timestamps
dump_stack() 2023-05-26 16:57:57 +00:00
parent 673b273593
commit 852680e944
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 12 additions and 10 deletions

View File

@ -29,7 +29,7 @@ var Runtime = "docker"
var Registry = ""
var Timeout = 8 * time.Minutes
var Timeout time.Duration
var Commands []config.DockerCommand
@ -314,18 +314,20 @@ func (c Container) Run(workdir string, cmds []string) (out string, err error) {
}
cmd.Stderr = cmd.Stdout
timer := time.AfterFunc(Timeout, func() {
flog.Info().Msg("killing container by timeout")
if Timeout != 0 {
timer := time.AfterFunc(Timeout, func() {
flog.Info().Msg("killing container by timeout")
flog.Debug().Msg("SIGINT")
cmd.Process.Signal(os.Interrupt)
flog.Debug().Msg("SIGINT")
cmd.Process.Signal(os.Interrupt)
time.Sleep(time.Minute)
time.Sleep(time.Minute)
flog.Debug().Msg("SIGKILL")
cmd.Process.Kill()
})
defer timer.Stop()
flog.Debug().Msg("SIGKILL")
cmd.Process.Kill()
})
defer timer.Stop()
}
err = cmd.Start()
if err != nil {