Skip to content

Commit 83a7cb8

Browse files
committed
minor fix
1 parent a0ee953 commit 83a7cb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rabbitmq_amqp_python_client/asyncio/consumer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ async def __aexit__(
203203
@property
204204
def address(self) -> str:
205205
"""Get the current consumer address."""
206-
return self.address
206+
return self._addr
207207

208208
@property
209209
def handler(self) -> Optional[AMQPMessagingHandler]:
210210
"""Get the current message handler."""
211-
return self.handler
211+
return self._handler

0 commit comments

Comments
 (0)