From 98f0f81894b7c724590df19ef89e94c15c4bbb92 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 7 Aug 2023 19:07:13 -0400 Subject: [PATCH] chore: expirationInterval typo (#166) Fix incorrect spelling for Interval --- config/sessions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/sessions.go b/config/sessions.go index 63711139..436c73d1 100644 --- a/config/sessions.go +++ b/config/sessions.go @@ -4,7 +4,7 @@ import "time" type Sessions struct { DefaultDuration time.Duration `mapstructure:"DEFAULT_DURATION" yaml:"defaultDuration" default:"5m"` - ExpirationInterval time.Duration `mapstructure:"EXPIRATION_INTERVAL" yaml:"expirationIntrerval" default:"20s"` + ExpirationInterval time.Duration `mapstructure:"EXPIRATION_INTERVAL" yaml:"expirationInterval" default:"20s"` } func NewSessionsConfig() Sessions {