diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-07-29 02:38:17 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-07-29 02:38:17 +0900 |
| commit | 940ee00ffee9208a244a99ff085a981c1af1d7c4 (patch) | |
| tree | b57465c48ccfb0eb594c84221aaf7bfd4aa6f444 /container/init.go | |
| parent | b43d10468039a07ada412dcab83e8e074ab9ef46 (diff) | |
container/init: configurable lingering process wait delay
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/init.go')
| -rw-r--r-- | container/init.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/container/init.go b/container/init.go index 9c4f810a..d4fce6e6 100644 --- a/container/init.go +++ b/container/init.go @@ -17,9 +17,6 @@ import ( ) const ( - // time to wait for linger processes after death of initial process - residualProcessTimeout = 5 * time.Second - /* intermediate tmpfs mount point this path might seem like a weird choice, however there are many good reasons to use it: @@ -358,7 +355,7 @@ func Init(prepare func(prefix string), setVerbose func(verbose bool)) { msg.Verbosef("initial process exited with status %#x", w.wstatus) } - go func() { time.Sleep(residualProcessTimeout); close(timeout) }() + go func() { time.Sleep(params.AdoptWaitDelay); close(timeout) }() } case <-done: msg.BeforeExit() |
