From c59c9ff0458da3e4bf92e83201b4057f19de9b25 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Thu, 27 Apr 2023 14:39:44 -0400 Subject: [PATCH] fix(config): yaml notations --- server/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/config/config.go b/server/config/config.go index ddbb0e566d647d05899f239c18f26d64c4f174ff..e2435bd48c8be9380c583d5d1b394457bb477305 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -26,7 +26,7 @@ type SSHConfig struct { KeyPath string `env:"KEY_PATH" yaml:"key_path"` // MaxTimeout is the maximum number of seconds a connection can take. - MaxTimeout int `env:"MAX_TIMEOUT" yaml:"max_timeout` + MaxTimeout int `env:"MAX_TIMEOUT" yaml:"max_timeout"` // IdleTimeout is the number of seconds a connection can be idle before it is closed. IdleTimeout int `env:"IDLE_TIMEOUT" yaml:"idle_timeout"`