From 64285be81c0b98c2732438bc7fc71ea1d5bf2dbf Mon Sep 17 00:00:00 2001 From: Dipack Date: Mon, 23 Dec 2024 12:47:02 -0800 Subject: [PATCH] server: add missing disable disconnect on expiry yaml tag (#209) Signed-off-by: Dipack Panjabi --- pkg/auth/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/auth/config.go b/pkg/auth/config.go index 0211856..072d092 100644 --- a/pkg/auth/config.go +++ b/pkg/auth/config.go @@ -37,7 +37,7 @@ type Config struct { // token expires. // // Piko still verifies the token expiry when the client first connects. - DisableDisconnectOnExpiry bool `json:"disable_disconnect_on_expiry"` + DisableDisconnectOnExpiry bool `json:"disable_disconnect_on_expiry" yaml:"disable_disconnect_on_expiry"` } // LoadedConfig is the same as Config except it parses the RSA and ECDSA keys.