Closed
Bug 80716
Opened 24 years ago
Closed 23 years ago
Webserver timeout length is not being honored
Categories
(Core :: Networking: HTTP, defect, P5)
Tracking
()
RESOLVED
FIXED
mozilla0.9.3
People
(Reporter: astevens, Assigned: darin.moz)
References
Details
We have several CGI scripts which can take over 30 minutes to complete. Usually,
the scripts are dumping data to the browser, however there are times where we
see a 5 - 10 minute "dead time" where no data is being sent. This is normal. The
problem is that Mozilla is giving a timeout after about 2 minutes of idle time.
a simple test case would be:
----
#!/usr/bin/perl
$|=1; #autoflush the data sent to the browser
print "content-type: text/plain\n\n";
print "sleeping for 600 seconds (10 minutes)\n";
sleep 600;
print "Done\n";
-----
Assignee | ||
Comment 1•24 years ago
|
||
do other browsers handle this ok? we do intentionally set a timeout in an
effort to detect stale connections. sounds like our timeout may be too short.
Comment 3•24 years ago
|
||
From dupe 80717:
------- Additional Comments From R.K.Aa 2001-05-14 09:38 -------
sounds like what i see in bug 35844. The sockets time out long before content is
served.
Reporter | ||
Comment 4•24 years ago
|
||
Yes, other browsers (IE and Netscape 4.7 and lynx) handle this correctly.
Additionally, on the suggested testcase below, you need to modify the webserver
timeout to be about 20 minutes, and run the script as a CGI program.
Updated•24 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Assignee | ||
Updated•24 years ago
|
Target Milestone: --- → mozilla0.9.2
Assignee | ||
Comment 6•23 years ago
|
||
reporter: please try this against a recent nightly build. i suspect that it
may no longer be a problem.
Assignee | ||
Updated•23 years ago
|
Priority: -- → P5
Assignee | ||
Comment 7•23 years ago
|
||
moving to 0.9.3 to get it off the 0.9.2 radar (though i believe it is fixed).
Status: NEW → ASSIGNED
Target Milestone: mozilla0.9.2 → mozilla0.9.3
Assignee | ||
Comment 8•23 years ago
|
||
i believe this was fixed with the http branch landing. marking FIXED.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•