Open
Bug 868712
Opened 12 years ago
Updated 2 months ago
"Slow startup" warning can appear on a fast startup after a slow startup
Categories
(Firefox :: General, defect)
Tracking
()
NEW
People
(Reporter: jruderman, Unassigned)
References
Details
> if (samples >= Services.prefs.getIntPref("browser.slowStartup.maxSamples")) {
> if (averageTime > Services.prefs.getIntPref("browser.slowStartup.timeThreshold"))
> this._showSlowStartupNotification();
> averageTime = 0;
> samples = 0;
> }
The warning can appear on a fast startup, which is very confusing. Maybe it was slow once because my computer was under heavy load, but I don't remember because 3 startups ago was 2 weeks ago.
Please add &&
currentTime > Services.prefs.getIntPref("browser.slowStartup.timeThreshold")
Reporter | ||
Updated•12 years ago
|
Summary: Slow startup can appear on a fast startup after a slow startup → "Slow startup" warning can appear on a fast startup after a slow startup
Reporter | ||
Comment 1•12 years ago
|
||
> Please add &&
> currentTime > Services.prefs.getIntPref("browser.slowStartup.timeThreshold")
That might not work well with the current strategy of throwing away all startup data every 5 startups, though.
Updated•11 years ago
|
Severity: normal → minor
Updated•2 years ago
|
Severity: minor → S4
You need to log in
before you can comment on or make changes to this bug.
Description
•