Skip to content

Commit

Permalink
fix local ldap-users config
Browse files Browse the repository at this point in the history
  • Loading branch information
David Christofas committed Mar 14, 2022
1 parent 56026c2 commit a0d51eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ func ParseStorageSpaceReference(sRef string) (provider.Reference, error) {
}

// FormatStorageSpaceReference will format a storage space reference into a string representation.
// If ref or ref.ResourceId are nil an empty string will be returned.
// If ref or ref.ResourceId are nil an error will be returned.
// The function doesn't check if all values are set.
// The resulting format can be:
//
Expand Down
6 changes: 3 additions & 3 deletions tests/oc-integration-tests/local/ldap-users.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ address = "0.0.0.0:18000"
auth_manager = "ldap"

[grpc.services.authprovider.auth_managers.ldap]
hostname="ldap"
hostname="localhost"
port=636
insecure=true
base_dn="dc=owncloud,dc=com"
Expand All @@ -34,7 +34,7 @@ cn="cn"
driver = "ldap"

[grpc.services.userprovider.drivers.ldap]
hostname="ldap"
hostname="localhost"
port=636
insecure=true
base_dn="dc=owncloud,dc=com"
Expand All @@ -57,7 +57,7 @@ gid="entryuuid"
driver = "ldap"

[grpc.services.groupprovider.drivers.ldap]
hostname="ldap"
hostname="localhost"
port=636
insecure=true
base_dn="dc=owncloud,dc=com"
Expand Down

0 comments on commit a0d51eb

Please sign in to comment.