Subject: | Documentation error: sample YAML configuration is incorrect |
In the YAML configuration example from the POD:
Settings in Config.yml
# Config for Store::LDAP
authentication:
ldap:
ldap_server: ldap.yourcompany.com
ldap_server_options:
- timeout: 30
All *_options are shown as arrays, this is an error, they should be
hashes, i.e.,
Settings in Config.yml
# Config for Store::LDAP
authentication:
ldap:
ldap_server: ldap.yourcompany.com
ldap_server_options:
timeout: 30