Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
oberstet committed Oct 20, 2018
2 parents eea9b54 + 82d8e07 commit 1b20fb9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion autobahn/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
#
###############################################################################

__version__ = u'18.9.2'
__version__ = u'18.10.1'
2 changes: 2 additions & 0 deletions autobahn/wamp/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,10 @@ def _start(self, loop=None):
# that fires when our "real" _done_f is completed.
if self._done_f is not None:
d = txaio.create_future()

def _cb(arg):
txaio.resolve(d, arg)

txaio.add_callbacks(self._done_f, _cb, _cb)
return d

Expand Down
12 changes: 8 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@
Changelog
=========

master
------

* ...
18.10.1
-------

* Don't eat Component.stop() request when crossbar not connected (#1066)
* handle async on_progress callbacks properly (#1061)
* fix attribute error when ConnectionResetError does not contain "reason" attribute (#1059)
* infer rawsocket host, port from URL (#1056)
* fix error on connection lost if no reason (reason = None) (#1055)
* fixed typo on class name (#1054)

18.9.2
------
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,3 @@ commands =
flake8 --version
; These ignores will be removed when they are fixed and we are flake8-clean
flake8 --ignore=E402,E501,E722,E741,N801,N802,N803,N805,N806 autobahn

basepython = python3.6

0 comments on commit 1b20fb9

Please sign in to comment.