diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2025-03-09 01:53:44 +1100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-09 01:53:44 +1100 | 
| commit | 9241731a4dd5592b4a02b5352c903b4d06b6f4ab (patch) | |
| tree | 5184b98751912a261ff70fd8721b9cd4f1c98f1e /internal/authentication/ldap_user_provider_lifecycle.go | |
| parent | bbcb38ab9ff35e69d5d52a71ab56346749f5e8b1 (diff) | |
feat(embed): make authelia embedable (#8841)
This adds a highly experimental option for developers looking to embed Authelia within another go binary.
Closes #5803
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/authentication/ldap_user_provider_lifecycle.go')
| -rw-r--r-- | internal/authentication/ldap_user_provider_lifecycle.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/authentication/ldap_user_provider_lifecycle.go b/internal/authentication/ldap_user_provider_lifecycle.go index 73dceaa6a..8f45c99f2 100644 --- a/internal/authentication/ldap_user_provider_lifecycle.go +++ b/internal/authentication/ldap_user_provider_lifecycle.go @@ -10,7 +10,7 @@ import (  	"github.com/authelia/authelia/v4/internal/utils"  ) -func (p *LDAPUserProvider) Shutdown() (err error) { +func (p *LDAPUserProvider) Close() (err error) {  	return p.factory.Close()  }  | 
