Skip to content

Commit

Permalink
added ability to disable TLS channel binding (#1368)
Browse files Browse the repository at this point in the history
Co-authored-by: Efstratios Goudelis <stratos.goudelis@gmail.com>
  • Loading branch information
jameshilliard and sgoudelis committed Apr 23, 2020
1 parent 1e55d82 commit bab6ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autobahn/wamp/auth.py
Expand Up @@ -158,7 +158,7 @@ def __init__(self, **kw):
"Must provide '{}' for cryptosign".format(key)
)
for key in kw.get('authextra', dict()):
if key not in ['pubkey']:
if key not in ['pubkey', 'channel_binding']:
raise ValueError(
"Unexpected key '{}' in 'authextra'".format(key)
)
Expand Down

0 comments on commit bab6ea1

Please sign in to comment.