diff --git a/internal/outpost/ldap/bind/memory/memory.go b/internal/outpost/ldap/bind/memory/memory.go index 8f1899568..b8ba768d0 100644 --- a/internal/outpost/ldap/bind/memory/memory.go +++ b/internal/outpost/ldap/bind/memory/memory.go @@ -56,7 +56,7 @@ func (sb *SessionBinder) Bind(username string, req *bind.Request) (ldap.LDAPResu sb.sessions.Set(Credentials{ DN: req.BindDN, Password: req.BindPW, - }, result, time.Duration(flags.Session.MaxAge)) + }, result, time.Until(flags.Session.Expires)) } return result, err }