diff mercurial/keepalive.py @ 40414:588f1e9a4d16 stable

http: work around custom http client classes that refuse extra attrs I have no idea what is going on with our custom http client code at Google, but it chokes on these extra attributes we're tucking on http clients. Since it feels more than a little wrong to just stuff extra data on a client, let's degrade gracefully when the client class refuses the attributes.
author Augie Fackler <augie@google.com>
date Mon, 29 Oct 2018 16:23:42 -0400
parents 41506e3b04ee
children 348352658e4b
line wrap: on
line diff
--- a/mercurial/keepalive.py	Thu Oct 25 21:33:43 2018 +0800
+++ b/mercurial/keepalive.py	Mon Oct 29 16:23:42 2018 -0400
@@ -442,7 +442,10 @@
         data = self._raw_read(amt)
 
         self.receivedbytescount += len(data)
-        self._connection.receivedbytescount += len(data)
+        try:
+            self._connection.receivedbytescount += len(data)
+        except AttributeError:
+            pass
         try:
             self._handler.parent.receivedbytescount += len(data)
         except AttributeError: