Skip to content
Snippets Groups Projects
Commit db6b23ee authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

v0.104

parent 8dc7fa89
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
* more extensive testing (CPython3.8, nightly)
* fixed a bug wherein future_to_notify_on_dead was set_result multiple times
* switched to nose2 for tests
* removed unnecessary print()s
# v0.103:
......
# coding=UTF-8
__version__ = '0.104a1'
__version__ = '0.104'
......@@ -88,14 +88,12 @@ class DeleteQueue(Operation):
def perform(self):
queue = self.obj
print('bang')
self.declarer.method_and_watch(
QueueDelete(queue.name, False, False, False),
(QueueDeleteOk, ChannelClose),
self._callback)
def _callback(self, payload):
print('got', payload)
assert not self.done
self.done = True
if isinstance(payload, ChannelClose):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment