Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
a23a3930
Commit
a23a3930
authored
Aug 12, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed type in retry code that causes Zope to hang.
I could have sworn I checked this in before.
parent
4004698e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ZServer/HTTPResponse.py
ZServer/HTTPResponse.py
+1
-1
lib/python/ZServer/HTTPResponse.py
lib/python/ZServer/HTTPResponse.py
+1
-1
No files found.
ZServer/HTTPResponse.py
View file @
a23a3930
...
@@ -272,7 +272,7 @@ class ChannelPipe:
...
@@ -272,7 +272,7 @@ class ChannelPipe:
# only stdout stderr were passed to the constructor. OTOH, I
# only stdout stderr were passed to the constructor. OTOH, I
# think that that's all that is ever passed.
# think that that's all that is ever passed.
r
=
self
.
__class__
(
stdout
=
self
.
stdout
,
stderr
=
self
.
stderr
)
r
esponse
=
self
.
__class__
(
stdout
=
self
.
stdout
,
stderr
=
self
.
stderr
)
response
.
_http_version
=
self
.
_http_version
response
.
_http_version
=
self
.
_http_version
response
.
_http_connection
=
self
.
_http_connection
response
.
_http_connection
=
self
.
_http_connection
response
.
_server_version
=
self
.
_server_version
response
.
_server_version
=
self
.
_server_version
...
...
lib/python/ZServer/HTTPResponse.py
View file @
a23a3930
...
@@ -272,7 +272,7 @@ class ChannelPipe:
...
@@ -272,7 +272,7 @@ class ChannelPipe:
# only stdout stderr were passed to the constructor. OTOH, I
# only stdout stderr were passed to the constructor. OTOH, I
# think that that's all that is ever passed.
# think that that's all that is ever passed.
r
=
self
.
__class__
(
stdout
=
self
.
stdout
,
stderr
=
self
.
stderr
)
r
esponse
=
self
.
__class__
(
stdout
=
self
.
stdout
,
stderr
=
self
.
stderr
)
response
.
_http_version
=
self
.
_http_version
response
.
_http_version
=
self
.
_http_version
response
.
_http_connection
=
self
.
_http_connection
response
.
_http_connection
=
self
.
_http_connection
response
.
_server_version
=
self
.
_server_version
response
.
_server_version
=
self
.
_server_version
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment