mirror of https://github.com/celery/kombu.git
Fixed typo self.release() -> self.close() in BrokerConnection.__exit__
This commit is contained in:
parent
d8da3c3dfc
commit
e3369ab793
|
@ -290,7 +290,7 @@ class BrokerConnection(object):
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def __exit__(self, *args):
|
def __exit__(self, *args):
|
||||||
self.release()
|
self.close()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def connection(self):
|
def connection(self):
|
||||||
|
|
Loading…
Reference in New Issue