From f88ae3861a835b086b19e8f7e448a080c67a6715 Mon Sep 17 00:00:00 2001 From: David Stainton Date: Fri, 2 Sep 2016 11:58:51 +0000 Subject: [PATCH] Make the grid status display the location hints Instead of displaying what appears to be the remote peer address we display the list of connection hints. closes ticket:2818 --- src/allmydata/storage_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/storage_client.py b/src/allmydata/storage_client.py index ad6232390..b02f88fb5 100644 --- a/src/allmydata/storage_client.py +++ b/src/allmydata/storage_client.py @@ -413,7 +413,7 @@ class NativeStorageServer(service.MultiService): level=log.NOISY, parent=lp) self.last_connect_time = time.time() - self.remote_host = rref.getPeer() + self.remote_host = rref.getLocationHints() self.rref = rref self._is_connected = True rref.notifyOnDisconnect(self._lost)