Commit a23a3930 authored by Jim Fulton's avatar Jim Fulton

Fixed type in retry code that causes Zope to hang.

I could have sworn I checked this in before.
parent 4004698e
......@@ -272,7 +272,7 @@ class ChannelPipe:
# only stdout stderr were passed to the constructor. OTOH, I
# think that that's all that is ever passed.
r=self.__class__(stdout=self.stdout, stderr=self.stderr)
response=self.__class__(stdout=self.stdout, stderr=self.stderr)
response._http_version=self._http_version
response._http_connection=self._http_connection
response._server_version=self._server_version
......
......@@ -272,7 +272,7 @@ class ChannelPipe:
# only stdout stderr were passed to the constructor. OTOH, I
# think that that's all that is ever passed.
r=self.__class__(stdout=self.stdout, stderr=self.stderr)
response=self.__class__(stdout=self.stdout, stderr=self.stderr)
response._http_version=self._http_version
response._http_connection=self._http_connection
response._server_version=self._server_version
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment