Skip to content

Commit

Permalink
prepare v22.2.1 (#1523)
Browse files Browse the repository at this point in the history
  • Loading branch information
oberstet committed Feb 23, 2022
1 parent e3273fb commit 2466c2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autobahn/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
#
###############################################################################

__version__ = '22.2.1.dev1'
__version__ = '22.2.1'

__build__ = u'00000000-0000000'
2 changes: 1 addition & 1 deletion autobahn/websocket/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ def onAutoPong(self, ping_sent, ping_seq, pong_received, pong_rtt, payload):
(ping_sent 8 bytes big-endian | ping_seq 4 bytes big endian | max. 113 optional random bytes).
"""
self.log.info(
"Auto ping/pong: received pending pong (size={size}) for auto-ping (sent={sent}, seq={seq}, received={}) in RTT of {rtt} ms",
"Auto ping/pong: received pending pong (size={size}) for auto-ping (sent={sent}, seq={seq}, received={received}) in RTT of {rtt} ms",
size=len(payload), sent=ping_sent, seq=ping_seq, received=pong_received, rtt=pong_rtt)

def onAutoPingTimeout(self):
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
Changelog
=========

22.2.1.dev1
-----------
22.2.1
------

* new: add auto-ping/pong configuration knob ``autoPingRestartOnAnyTraffic`` (see discussion `here <https://github.com/crossbario/autobahn-python/issues/1327>`_).
* new: extended websocket auto-ping/pong ("heartbeating") with builtin RTT measurement
Expand Down

0 comments on commit 2466c2b

Please sign in to comment.