Merge pull request #146 from infosiftr/ssl-depth

Add "depth" as a valid SSL option
This commit is contained in:
Tianon Gravi 2017-04-03 11:21:32 -07:00 committed by GitHub
commit c81406952e
2 changed files with 4 additions and 2 deletions

View File

@ -51,6 +51,7 @@ fileEnvKeys=(
sslConfigKeys=(
cacertfile
certfile
depth
fail_if_no_peer_cert
keyfile
verify
@ -207,7 +208,7 @@ rabbit_env_config() {
local rawVal=
case "$conf" in
verify|fail_if_no_peer_cert)
verify|fail_if_no_peer_cert|depth)
[ "$val" ] || continue
rawVal="$val"
;;

View File

@ -51,6 +51,7 @@ fileEnvKeys=(
sslConfigKeys=(
cacertfile
certfile
depth
fail_if_no_peer_cert
keyfile
verify
@ -207,7 +208,7 @@ rabbit_env_config() {
local rawVal=
case "$conf" in
verify|fail_if_no_peer_cert)
verify|fail_if_no_peer_cert|depth)
[ "$val" ] || continue
rawVal="$val"
;;