Skip to content

Commit 61ec61b

Browse files
committed
fixing extra attribute fparameter
1 parent e4be084 commit 61ec61b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
### Server
10+
#### Modified
11+
- Changing `--search-attributes` to `--extra-attributes`, fixing extra attributes not being processed and added to the user object
912

1013
## [3.2.1] - 2021-11-10
1114
### Client

cmd/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ func getServerCmd() *cli.Command {
116116
searchBase = c.String("search-base")
117117
searchScope = c.String("search-scope")
118118
searchFilter = c.String("search-filter")
119-
searchAttributes = c.StringSlice("search-attributes")
119+
extraAttributes = c.StringSlice("extra-attributes")
120120
memberofProperty = c.String("memberof-property")
121121
usernameProperty = c.String("username-property")
122122

@@ -138,7 +138,7 @@ func getServerCmd() *cli.Command {
138138
searchFilter,
139139
memberofProperty,
140140
usernameProperty,
141-
searchAttributes,
141+
extraAttributes,
142142
),
143143
server.WithAccessLogs(),
144144
server.WithKey(

0 commit comments

Comments
 (0)