Skip to content

Commit

Permalink
Add support for authentication_failure_close, connection.blocked
Browse files Browse the repository at this point in the history
  • Loading branch information
gmr committed Jan 17, 2014
1 parent bd527f2 commit 755fcae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pika/connection.py
Expand Up @@ -884,7 +884,9 @@ def _client_properties(self):
"""
return {'product': PRODUCT,
'platform': 'Python %s' % platform.python_version(),
'capabilities': {'basic.nack': True,
'capabilities': {'authentication_failure_close': True,
'basic.nack': True,
'connection.blocked': True,
'consumer_cancel_notify': True,
'publisher_confirms': True},
'information': 'See http://pika.rtfd.org',
Expand Down

0 comments on commit 755fcae

Please sign in to comment.