This is an automated email from the ASF dual-hosted git repository.

gmurthy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new c3d34df  DISPATCH-1512 - Fixed variable name in for loop in 
unmap_all_addresses. This closes #639.
c3d34df is described below

commit c3d34df4b95214135441921f708bb135e9c60e28
Author: Ganesh Murthy <[email protected]>
AuthorDate: Thu Dec 5 09:31:13 2019 -0500

    DISPATCH-1512 - Fixed variable name in for loop in unmap_all_addresses. 
This closes #639.
---
 python/qpid_dispatch_internal/router/node.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/qpid_dispatch_internal/router/node.py 
b/python/qpid_dispatch_internal/router/node.py
index 02cfee2..c99ce95 100644
--- a/python/qpid_dispatch_internal/router/node.py
+++ b/python/qpid_dispatch_internal/router/node.py
@@ -555,7 +555,7 @@ class RouterNode(object):
 
     def unmap_all_addresses(self):
         self.mobile_address_sequence = 0
-        for a in self.mobile_addresses:
+        for addr in self.mobile_addresses:
             self.adapter.unmap_destination(addr, self.maskbit)
             self.log(LOG_DEBUG, "Remote destination %s unmapped from router 
%s" % (self._logify(addr), self.id))
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to