From cfc616613569139315ebeafa69bab0729e029289 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sun, 27 Feb 2022 13:26:18 -0700 Subject: [PATCH] make casing of noRestartOn match other yaml fields --- pmuxproc/pmuxproc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmuxproc/pmuxproc.go b/pmuxproc/pmuxproc.go index 53cdde6..f2c10e3 100644 --- a/pmuxproc/pmuxproc.go +++ b/pmuxproc/pmuxproc.go @@ -45,7 +45,7 @@ type Config struct { // NoRestartOn indicates which exit codes should result in the process not // being restarted any further. - NoRestartOn []int `yaml:"no_restart_on"` + NoRestartOn []int `yaml:"noRestartOn"` } func (cfg Config) withDefaults() Config {