You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by tr...@apache.org on 2015/10/01 16:02:32 UTC

qpid-dispatch git commit: NO-JIRA - Fixed __repr__(self) function of Node class in client.py to use url instead of address. There is no address attribute in the Node class

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 96affd96b -> 4c1d50e66


NO-JIRA - Fixed __repr__(self) function of Node class in client.py to use url instead of address. There is no address attribute in the Node class


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/4c1d50e6
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/4c1d50e6
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/4c1d50e6

Branch: refs/heads/master
Commit: 4c1d50e66208cda4599aa9084f831ed48360b689
Parents: 96affd9
Author: ganeshmurthy <gm...@redhat.com>
Authored: Thu Oct 1 09:43:54 2015 -0400
Committer: ganeshmurthy <gm...@redhat.com>
Committed: Thu Oct 1 09:55:56 2015 -0400

----------------------------------------------------------------------
 python/qpid_dispatch/management/client.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/4c1d50e6/python/qpid_dispatch/management/client.py
----------------------------------------------------------------------
diff --git a/python/qpid_dispatch/management/client.py b/python/qpid_dispatch/management/client.py
index 83cbcc9..6b42436 100644
--- a/python/qpid_dispatch/management/client.py
+++ b/python/qpid_dispatch/management/client.py
@@ -119,7 +119,7 @@ class Node(object):
             self.client = None
 
     def __repr__(self):
-        return "%s(%s)"%(self.__class__.__name__, self.address)
+        return "%s(%s)"%(self.__class__.__name__, self.url)
 
     @staticmethod
     def check_response(response, expect=OK):


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org