feat: shutdown_timeout == timeout by default

pull/201/head
Earl Warren 2024-06-03 15:18:56 +02:00
parent 30029567f7
commit 31b3de2c96
No known key found for this signature in database
GPG Key ID: 0579CB2928A78A00
2 changed files with 5 additions and 1 deletions

View File

@ -25,7 +25,8 @@ runner:
timeout: 3h
# The timeout for the runner to wait for running jobs to finish when shutting down.
# Any running jobs that haven't finished after this timeout will be cancelled.
shutdown_timeout: 0s
# Defaults to the same value as timeout if unset or 0.
shutdown_timeout: 3h
# Whether skip verifying the TLS certificate of the instance.
insecure: false
# The timeout for fetching the job from the Forgejo instance.

View File

@ -121,6 +121,9 @@ func LoadDefault(file string) (*Config, error) {
if cfg.Runner.Timeout <= 0 {
cfg.Runner.Timeout = 3 * time.Hour
}
if cfg.Runner.ShutdownTimeout <= 0 {
cfg.Runner.ShutdownTimeout = cfg.Runner.Timeout
}
if cfg.Cache.Enabled == nil {
b := true
cfg.Cache.Enabled = &b