diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-04-19 12:09:35 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-04-19 12:09:35 -0700 |
| commit | 2f18a92e2013729b608f8d95f80eb364e69594f6 (patch) | |
| tree | 1027fd378019f57062d7c05d410cb6488f6e66ae /node/Cluster.cpp | |
| parent | affbca74b41a48e6a485d69409936d7c2bd12858 (diff) | |
| download | infinitytier-2f18a92e2013729b608f8d95f80eb364e69594f6.tar.gz infinitytier-2f18a92e2013729b608f8d95f80eb364e69594f6.zip | |
Cleanup in numerous places, reduce network chattiness around MULTICAST_LIKE, and fix a "how was that working" latent bug causing some control traffic to take the scenic route.
Diffstat (limited to 'node/Cluster.cpp')
| -rw-r--r-- | node/Cluster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Cluster.cpp b/node/Cluster.cpp index 61903307..f590ad1c 100644 --- a/node/Cluster.cpp +++ b/node/Cluster.cpp @@ -710,7 +710,7 @@ bool Cluster::findBetterEndpoint(InetAddress &redirectTo,const Address &peerAddr // Pick based on location if it can be determined int px = 0,py = 0,pz = 0; if (_addressToLocationFunction(_addressToLocationFunctionArg,reinterpret_cast<const struct sockaddr_storage *>(&peerPhysicalAddress),&px,&py,&pz) == 0) { - TRACE("no geolocation data for %s (geo-lookup is lazy/async so it may work next time)",peerPhysicalAddress.toIpString().c_str()); + TRACE("no geolocation data for %s",peerPhysicalAddress.toIpString().c_str()); return false; } |
