Bug 1892062 - Set minTaskRunTimeMS to 3 minutes to investigate 1741675 r=bytesized

Differential Revision: https://phabricator.services.mozilla.com/D207769
This commit is contained in:
Nipun Shukla 2024-04-17 19:32:10 +00:00
parent 9787e4646b
commit 633fa2b9c3

View File

@ -36,7 +36,8 @@ ChromeUtils.defineLazyGetter(lazy, "DevToolsStartup", () => {
// export const backgroundTaskTimeoutSec = X;
// export const backgroundTaskMinRuntimeMS = Y;
let timingSettings = {
minTaskRuntimeMS: 500,
// Set minTaskRunTimeMS to 3 minutes temporarily to investigate bug 1741675
minTaskRuntimeMS: 3 * 60 * 1000, // 3 minutes.
maxTaskRuntimeSec: 600, // 10 minutes.
};