summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2020-03-19 10:54:40 +0000
committerRobert Newson <rnewson@apache.org>2020-03-22 23:16:29 +0000
commit8074a32f173b683a902d5c5f92115d434b3be262 (patch)
tree392df1461c0787c2c324cf6363f8aa7e2bb918ec
parentf6a4f8ee787a9418c527f952b785ed293be806af (diff)
downloadcouchdb-8074a32f173b683a902d5c5f92115d434b3be262.tar.gz
no need to deduplicate this list
-rw-r--r--src/couch/src/couch_httpd_auth.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couch/src/couch_httpd_auth.erl b/src/couch/src/couch_httpd_auth.erl
index 7c55f390e..6b85a02cc 100644
--- a/src/couch/src/couch_httpd_auth.erl
+++ b/src/couch/src/couch_httpd_auth.erl
@@ -211,7 +211,7 @@ get_configured_algorithms() ->
re:split(config:get("jwt_auth", "allowed_algorithms", "HS256"), "\s*,\s*", [{return, binary}]).
get_configured_claims() ->
- lists:usort(re:split(config:get("jwt_auth", "required_claims", ""), "\s*,\s*", [{return, binary}])).
+ re:split(config:get("jwt_auth", "required_claims", ""), "\s*,\s*", [{return, binary}]).
cookie_authentication_handler(Req) ->
cookie_authentication_handler(Req, couch_auth_cache).